我在密歇根的一家小型移动运营商工作。我们客户的 Android 手机在通过特定 cellID 提供服务时接收到不准确的坐标。我们可以向 Google 提供此 cellID 的更新坐标信息吗?
brock@ws1:~# cat celldata.json
{
"homeMobileCountryCode": 310,
"homeMobileNetworkCode": 1350,
"radioType": "cdma",
"carrier": "Thumb Cell",
"cellTowers": [
{
"cellId": 16435,
"locationAreaCode": 0,
"mobileCountryCode": 310,
"mobileNetworkCode": 1350,
"age": 0,
"signalStrength": -80
}
]
}
brock@ws1:~# curl -d @celldata.json -H "Content-Type: application/json" -i "https://www.googleapis.com/geolocation/v1/geolocate?key=hidden"
HTTP/1.1 200 OK
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Date: Fri, 09 May 2014 14:51:53 GMT
ETag: "tWi4Lxc9BOVIuoBFIxSkFtb7KLg/mcMcHq7UHbH_KtCJEZ7JurKLA7k"
Content-Type: application/json; charset=UTF-8
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Alternate-Protocol: 443:quic
Transfer-Encoding: chunked
{
"location": {
"lat": 44.0921216,
"lng": -83.5834574
},
"accuracy": 3791.0
}
brock@ws1:~#