i have been trying to use some ajax to save venue location in my application and stumbled across the following code on stack overflow
function getLatLong(add
In my case simplest solution for getting latitude and longitude from place object was:
var latitude=place.geometry.location['k']; var longitude=place.geometry.location['A'];