我試圖讓Google地圖版本v3與Google網絡工具套件一起使用。 我正在使用GWT 2.5.1。我一直在嘗試使用GWT搜索最新版的Google地圖,並以此結束於page。 根據那裏的說明我下載了這3個jar文件。無法將GWT與Google Maps V3配合使用
gwt-maps-api-v3-3.8.1-javadoc.jar
gwt-maps-api-v3-3.8.1-sources.jar
gwt-maps-api-v3-3.8.1.jar
我已經把我的WEB-INF
我已經加入這些jar文件到類路徑中
在我map_geolocation.gwt.xml的jar文件我已經繼承了該模塊。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.5.1//EN" "http://google-web-toolkit.googlecode.com/svn/tags/2.5.1/distro-source/core/src/gwt-module.dtd">
<module rename-to="map_geolocation">
<inherits name="com.google.gwt.user.User" />
<inherits name="com.google.maps.gwt.GoogleMaps" />
<source path="client" />
<entry-point class="com.google.maps.gwt.samples.basics.client.MapGeolocation" />
</module>
當我嘗試運行我的代碼時,出現此錯誤。
Loading modules
com.google.maps.gwt.samples.basics.map_geolocation
Loading inherited module 'com.google.maps.gwt.samples.basics.map_geolocation'
Loading inherited module 'com.google.maps.gwt.GoogleMaps'
[ERROR] Unable to find 'com/google/maps/gwt/GoogleMaps.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?
[ERROR] Line 6: Unexpected exception while processing element 'inherits
做一些研究後,我繼承
<inherits name='com.google.gwt.maps.Maps' />
,而不是
<inherits name="com.google.maps.gwt.GoogleMaps" />
還是失敗。有誰知道發生了什麼事?
更新:我不關心使用V3。我在哪裏可以找到穩定的最新 GWT的Google地圖插件?
你能分享你找到那個教程的頁面嗎? – Ordiel
你的意思是https://github.com/branflake2267/GWT-Maps-V3-Api –