Is there a way by which I can find latitude and longitude of a known place e.g. known city like Singapore, Kuala Lumpur / New York.
Asked
Active
Viewed 1,121 times
2
-
They're down right now, but I like [getlatlon.com](http://getlatlon.com/) – flup Feb 11 '13 at 18:34
-
Right now: http://getlatlon.yohman.com/ – flup Feb 11 '13 at 18:36
2 Answers
1
Ask google.
e.g.
This http request:
http://maps.google.com/maps/geo?q=Singapore
returns:
{
"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 ]
}
} ]
}

MrSmith42
- 9,961
- 6
- 38
- 49