2

我正在尝试让 Googlemaps v3 与 Google 网络工具包一起使用。我正在使用 GWT 2.5.1。我一直在尝试使用 GWT 搜索最新版本的 Google Maps 并最终出现在此页面上。按照那里的说明,我已经下载了这 3 个 jar 文件。

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

我已将这些 jar 文件放在我的 WEB-inf 中 在此处输入图像描述

我已将这些 jar 文件添加到我的类路径中 在此处输入图像描述

在我的map_geolocation.gwt.xml 中,我继承了该模块。

<?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 地图插件?

4

1 回答 1

4

1-您只需要一个 jar,从 maven repos 下载最新版本,然后在您的类路径中放入一个 jar: gwt-maps-api-3.10.0-alpha-6.jar

2-gwt-maps-api取决于gwt-ajaxloader所以下载它,解压缩,然后将gwt-ajaxloader.jar文件添加到你的类路径。

3-检查您是否在.gwt.xml文件中继承了正确的模块:

<inherits name='com.google.gwt.maps.Maps' />

4- 通常,在你的 Eclipse 中,GWT sdk 的类路径应该在 3party 库之前

5-[ERROR] Unable to find '....gwt.xml' on your classpath始终是类路径的问题。stackoverflow 中有很多关于这个常见问题的答案。

完成此操作后,如果您的问题仍然存在,请尝试删除项目的“运行方式”配置并重新设置。

于 2013-04-17T08:43:14.550 回答