Google released official maps v3 API for GWT here https://groups.google.com/forum/#!topic/gwt-google-apis/6SO5kCDqb-k
(Note that http://code.google.com/p/gwt-google-maps-v3/ is deprecated and is not official.)
I have downloaded the zip file and there are samples in it but they are all java. I can not figure out how to inherit it in my project.gwt.xml or what to write into my main html or where to put the gwt-maps.jar file.
Is there any complete Eclipse GWT project “for the OFFICIAL API” to start with? Or any guidance link which explains how to start from zero to my first class which has the OnModuleLoad()?
Thanks
Here are a few tips to help you get starting:
gwt-maps.jarshould be placed in WEB-INF/libin your
prject.gwt.xmlyou might add in your<module>section:this will make loading maps api when loading page.
Followings are copy/paste lines from my app, arrange them to match your needs:
This will build a widget with a map inside.