1


I have GPS co-ordinate and i want find the Locale using those co-ordinates. I have option to use Google Map api but i am looking for any other option to get the location details so that i could find out locale.

Please guide me how could i do that?

Sharad Ahire
  • 758
  • 2
  • 16
  • 32

2 Answers2

0

You could use the Open Street Map reverse geocode API:

http://nominatim.openstreetmap.org/reverse?format=xml&lat=52.5487429714954&lon=-1.81602098644987&zoom=18&addressdetails=1

Ore are you looking for other data than location information? Like timezone, spoken language, used currency, etc.? For that you would use the locale data and mesh it up with other services.

konstantin
  • 695
  • 2
  • 6
  • 14
0

You can do it in two steps. First get the country code using the website described here and then try to convert the country code to locale - should be easy from here.

Community
  • 1
  • 1
Kris
  • 5,714
  • 2
  • 27
  • 47