Skip to content Skip to sidebar Skip to footer

How To Find List Of Latitude And Longitude Using Pincode As Input

is there any way we can we find list of latitude and longitude using zip/pincode? Input: 560103 Output : 12.123456, 72.123456 12.123654, 72.366666 .... .... 12.123456, 72.12345

Solution 1:

Checkout Google Api

Check this out

http://maps.googleapis.com/maps/api/geocode/json?address=110029&sensor=true

This will give you the approx location of pincode 110029

All you have to do is parse the json end extract the coordinates

Post a Comment for "How To Find List Of Latitude And Longitude Using Pincode As Input"