Soliyappan
Soliyappan

Reputation: 666

How to get the Google Geocoder API geometry values (latitude and longitude) same as Google maps URL latitude and longitude values

I am using Google Maps Geocoding API to get geometry location (lat, lng values) of the address in store locator address filter.

Example:

When I used to search an address (Postal code, Street name, Landmark) of Singapore and It gives location lat & lng values in geometry results as follows,

JavaScript method:

geocoder.geocode({'address': "New Bridge Road"}, function(results, status) {});

The above JavaScript method and the Geocoder Request URL API will return as

"location" : {
   "lat" : 1.283266,
   "lng" : 103.8426887
},

But when I used to search the same address in Google map (https://www.google.co.in/maps), it shows different lat & lng values in the address bar as

enter image description here

So here I wanted to have the same zoom level, center position and lat & lng values as google map for my store locator also.

Upvotes: 0

Views: 2018

Answers (1)

miguev
miguev

Reputation: 4840

Region biasing to IN will get you results as on maps.google.co.in:

https://maps.googleapis.com/maps/api/geocode/json?new_forward_geocoder=true&address=New%20Bridge%20Road&region=IN

Upvotes: 0

Related Questions