我正在尝试使用 Google Maps Geolocation API。我正在将一个仅包含手机信号塔的 JSON 文件发布到https://www.googleapis.com/geolocation/v1/geolocate?key=MYKEY
.
示例 JSON:
{
"cellTowers":[
{
"cellId":65535,
"locationAreaCode":5160,
"mobileCountryCode":234,
"mobileNetworkCode":10,
"signalStrength":-53
},
{
"cellId":34177,
"locationAreaCode":5160,
"mobileCountryCode":234,
"mobileNetworkCode":10,
"signalStrength":-55
}
]}
这已被验证为正确的 JSON。但是,我在从 API 中获取体面的数据时遇到问题。
我已经使用 Apache HTTPClient 和 HTTPPost 库在 Java 中实现了 POST。我得到了一个有效的回复,但它始终是 cellTowers 数组中第一个蜂窝塔的 LAT、LNG。好像 API 正在读取第一个蜂窝塔,获取位置然后忽略其余部分。当然,我已经通过反转和改组列表来验证这是行为,并且每次响应都会更改到第一个塔的位置。这是我的代码:
HttpParams httpParams = new BasicHttpParams();
ConnRouteParams.setDefaultProxy(httpParams, new HttpHost(PROXY_HOST, PROXY_PORT));
HttpConnectionParams.setConnectionTimeout(httpParams, TIMEOUT_MILLISEC);
HttpConnectionParams.setSoTimeout(httpParams, TIMEOUT_MILLISEC);
HttpClient client = new DefaultHttpClient(httpParams);
HttpPost request = new HttpPost(GOOGLE_GEOLOCATION_API);
request.setHeader("Content-type", "application/json");
try {
StringEntity se = new StringEntity(json);
request.setEntity(se);
HttpResponse response = client.execute(request);
if(response!=null){
String jsonResult = EntityUtils.toString(response.getEntity());
GeolocationResponse geolocationResponse = gson.fromJson(jsonResult, GeolocationResponse.class);
logger.info(jsonResult);
logger.info("Est. Location: " + geolocationResponse.toString());
}
} catch (Exception e) {
e.printStackTrace();
}
Geolocation API 是否一次只支持一个手机信号塔?我认为它会比这更聪明,使用某种信号传播和跨所有塔的距离估计。