English 中文(简体)
GWT AdsManager not displaying ads on map
原标题:

Here s my code:

    AdsManagerOptions options = AdsManagerOptions.newInstance();
    options.setMaxAdsOnMap(1);      
    AdsManager ads = AdsManager.newInstance(map, "google");
    ads.setEnabled(true);

I tried doing this before the map is added to a panel, after a map is added to a panel, and any other way i could think of that could possibly make sense. My publisher id is "google" because I havent been approved for adsense yet, but ive tried taking a real publisher id and i got the same result.

What is confusing me a bit, is that the AdsManager isnt a widget, so I cant choose where i want to place it on the map. Ive read that this is actually how it works, but ive seen sites like http://mapper.acme.com/ where the ads are not in the typical bottom right corner.

Can someone PLEASE enlighten me on what I am doing wrong because this is driving me mad! Thanks!


I still have no answer. I am now trying with a legitimate publisher ID so I know that an invalid publisher id wasnt the reason for my frustrations. Anyone have any ideas?

问题回答

Are you using firefox? If yes, do you have adblock on? Or any other adblocker on your browser?

Its also possible that the region you re looking at doesn t have any ads... Try zooming into a place like New York...





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签