java反向代码从经度和经度获取地址

时间:2016-09-23 05:04:09

标签: java

我从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();
}

1 个答案:

答案 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