我想得到多个地址的纬度和经度

时间:2015-04-10 06:35:14

标签: google-geocoding-api

Google地理编码API,要么无法在单个请求中发送多个地址?

我尝试了以下代码。

GeoApiContext context = getContext();
context.setApiKey("");
context.setEnterpriseCredentials("gme-***", "***");

GeocodingApiRequest req = GeocodingApi.geocode(context, "Tokyo Japan, Osaka Japan");
req.language("ja");
GeocodingResult[] results = req.awaitIgnoreError();
for (GeocodingResult result : results) {
    System.out.println(result.geometry.location.lat);
    System.out.println(result.geometry.location.lng);
}

我想减少请求。

0 个答案:

没有答案