google place api get address by lat long code example
Example 1: get address from latitude and longitude google map api
Simply pass latitude, longitude and your Google API Key to the following query string, you will get a json array, fetch your city from there.
https://maps.googleapis.com/maps/api/geocode/json?latlng=44.4647452,7.3553838&key=YOUR_API_KEY
Note: Ensure that no space exists between the latitude and longitude values when passed in the latlng parameter.
Click here to get an API key
Example 2: get latlong of address in here map api javascript
// Instantiate a map and platform object:
var platform = new H.service.Platform({
'apikey': '{YOUR_API_KEY}'
});
// Get an instance of the geocoding service:
var service = platform.getSearchService();
// Call the geocode method with the geocoding parameters,
// the callback and an error callback function (called if a
// communication error occurs):
service.geocode({
q: '200 S Mathilda Ave, Sunnyvale, CA'
}, (result) => {
// Add a marker for each location found
result.items.forEach((item) => {
map.addObject(new H.map.Marker(item.position));
});
}, alert);