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);
}
我想减少请求。