[Solved] Combine Geocode with marker clustering

You are creating a new MarkerCluster every time you create a marker. Create it once, add all the markers to the same MarkerClusterer object. function initMap() { var map = new google.maps.Map(document.getElementById(‘map’), { center: new google.maps.LatLng(43.6191, -113.9772), zoom: 8 }); var infoWindow = new google.maps.InfoWindow; // ******************************************************************************** // ** move the markers array and the … Read more