我正在尝试使用Google Maps API开发一个简单的GWT应用程序,并且我无法理解如何在Eclipse中的项目中添加API(https://github.com/branflake2267/GWT-Maps-V3-Api)并开始使用它。
欢迎任何有用的步骤!
答案 0 :(得分:0)
如果您已经创建了Eclipse项目并下载了#41; Google Plugin for Eclipse 4.4 / 4.5 / 4.6"和#34; Google Web Toolkit SDK 2.7.0" (帮助 - >使用https://dl.google.com/eclipse/plugin/4.6安装新软件作为存储库)您只需将branflake-lib添加到项目构建路径中。如果您使用maven,则必须添加
<!-- GWT Maps API V3 -->
<dependency>
<groupId>com.github.branflake2267</groupId>
<artifactId>gwt-maps-api</artifactId>
<version>3.10.0-alpha-7</version>
</dependency>
到你的pom.xml。否则,您只需从branflake Github download page下载该库即可。请记住添加依赖项(gwt-ajaxloader)。
之后您必须将继承<inherits name='com.google.gwt.maps.Maps'/>
添加到modulename.gwt.xml
- 现在您可以使用branflake GWT Maps v3 API。
其他内容请参阅有关如何在项目中使用API的文档/演示。