This Google Maps link returns train stations in Shanghai, China. By appending '&output=js' it returns it in JSON format. I'm trying to decode the format Google uses for lat/lon:
latlng:{
lat:0,
lng:0,
alt:{
ll:"35122131713574191160",
mode:2
}
}
For all other countries, Google returns the lat lon values separated in the lat and lon . Only for China they return this strange ll value. Does anybody know how to decode it?
35122131713574191160number mean, then? – Ortwin Gentz Dec 8 '10 at 15:15