我从stackoverflow获得了java reverse code to get address from lattitude and longitude
的答案。但在那个答案中,我无法访问包装GeoApi上下文,GeocodingResult,GeocodingApi。我正在为java web应用程序编写。有人告诉我我下载的包装或jar文件是什么包括那些包装
我的答案代码是
GeoApiContext gtx = new GeoApiContext().setApiKey("**<<<<your-key-here>>>>**");
try {
GeocodingResult[] gResp = GeocodingApi.newRequest(gtx)
.latlng(new LatLng(37, -121)).await();
System.out.println(gResp[0].formattedAddress);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
答案 0 :(得分:1)
<强>罐强>
如果您想下载jar,可以在 mvnrepository.com 上执行:google-maps-services-0.1.15.jar
<强>的Maven 强>
如果您正在使用maven,请访问以下坐标:
<dependency>
<groupId>com.google.maps</groupId>
<artifactId>google-maps-services</artifactId>
<version>0.1.15</version>
</dependency>
您可以在此处找到更多信息:developers.google.com