Google Maps Api Geocoding Multiple Locations
I've set up a little js code to geocode some locations and place than on a map. I can easily do one location, but I can't get it to work for two locations. My working code is below
Solution 1:
This solution works for two, perhaps up to 10 locations, after that you will start running into the query and rate limits on the Geocoder
- separate out the initialize function, just initializes the map
- create a unique geocoder instance for each location (you can reuse the same geocoder instance by reusing it in the call back, not worth it for two points).
working code snippet:
functioninitialize() {
var myOptions = {
zoom: 2,
panControl: false,
zoomControl: false,
mapTypeControl: false,
streetViewControl: false,
center: {
lat: 0,
lng: 0
},
mapTypeId: google.maps.MapTypeId.ROADMAP,
mapTypeControl: false,
scrollwheel: false,
};
var bounds = new google.maps.LatLngBounds();
var map = new google.maps.Map(document.getElementById("google-container"), myOptions);
var geocoder = new google.maps.Geocoder();
var address = "Seoul";
geocoder.geocode({
'address': address
}, function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
var marker = new google.maps.Marker({
position: results[0].geometry.location,
map: map,
});
bounds.extend(results[0].geometry.location);
map.fitBounds(bounds);
} else {
alert("Geocode of " + address + " failed," + status);
}
});
var geocoder2 = new google.maps.Geocoder();
var address2 = "Melbourne";
geocoder2.geocode({
'address': address2
}, function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
var marker = new google.maps.Marker({
position: results[0].geometry.location,
map: map,
});
bounds.extend(results[0].geometry.location);
map.fitBounds(bounds);
} else {
alert("Geocode of " + address2 + " failed," + status);
}
});
}
google.maps.event.addDomListener(window, 'load', initialize);
html, body, #google-container {
height: 100%;
width: 100%;
margin: 0px;
padding: 0px
}
<scriptsrc="https://maps.googleapis.com/maps/api/js?key=AIzaSyCkUOdZ5y7hMm0yrcCQoCvLwzdM6M8s5qk"></script><divid="google-container"style="border: 2px solid #3872ac;"></div>
Solution 2:
here is some code optimization allows to process multiple addresses
<divid="map-canvas"style='position: relative; height: 100%; width: 100%; margin-left: 0px; border: #B8B6B8 solid 1px;; background-color: #ffffff;'></div><scripttype="text/javascript">var geocoder;
var map;
functioninitialize() {
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(-34.397, 150.644);
var mapOptions = {
zoom : 17,
center : latlng,
mapTypeId : google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions);
}
functioncodeAddress(addressList) {
try {
var icount = addressList.length;
for (var i = 0; i < icount; i++) {
getGeoCoder(addressList[i]);
}
} catch (error) {
alert(error);
}
}
functiongetGeoCoder(address) {
geocoder.geocode({
'address' : address
}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
map : map,
position : results[0].geometry.location
});
} else {
geterrorMgs(address); // address not found handler
}
});
}
//client's call//addresses list to be processedvar addressList = [ '1420 orchardview dr Pittsburgh, PA, USA', '1440 orchardview dr Pittsburgh, PA, USA', '1410 orchardview dr Pittsburgh, PA, USA' ];
initialize();
codeAddress(addressList);
</script>
Post a Comment for "Google Maps Api Geocoding Multiple Locations"