Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- geocoder.getLocations(latlng, showAddress);
- function showAddress(response){
- if (response && response.Status.code == 200){
- var place = reponse.Placemark[0]
- var city = place.AddressDetails.Country.AdministrativeArea.SubAdministrativeArea.Locality.LocalityName;
- var state = place.AddressDetails.Country.AdministrativeArea.AdministrativeAreaName;
- var zip = place.AddressDetails.Country.AdministrativeArea.SubAdministrativeArea.Locality.PostalCode.PostalCodeNumber;
- }
- }
Advertisement
RAW Paste Data
Copied
Advertisement