2

有没有办法可以找到一个已知地方的纬度和经度,例如新加坡、吉隆坡/纽约等知名城市。

4

2 回答 2

3

地理编码

查看:谷歌地理编码 API

于 2013-02-11T18:36:01.930 回答
1

问谷歌。
例如

此 http 请求:http:
//maps.google.com/maps/geo ?q=Singapore

返回:

{
  "name": "Singapore",
  "Status": {
    "code": 200,
    "request": "geocode"
  },
  "Placemark": [ {
    "id": "p1",
    "address": "Singapur",
    "AddressDetails": {
   "Accuracy" : 1,
   "Country" : {
      "CountryName" : "Singapur",
      "CountryNameCode" : "SG"
   }
},
    "ExtendedData": {
      "LatLonBox": {
        "north": 1.4708809,
        "south": 1.1663980,
        "east": 104.0856805,
        "west": 103.6056246
      }
    },
    "Point": {
      "coordinates": [ 103.8198360, 1.3520830, 0 ]
    }
  } ]
}
于 2013-02-11T18:35:58.333 回答