I want to change the COUNTY icon to blue (nothing but red).
Is there a way to define a different icon color for a specific point?
<script type="text/javascript"> //<![CDATA[ var map = null; function initialize() { var myOptions = { zoom: 8, center: new google.maps.LatLng(39.831125875,-112.15968925), mapTypeControl: true, mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU}, navigationControl: true, mapTypeId: google.maps.MapTypeId.ROADMAP } map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); google.maps.event.addListener(map, 'click', function() { infowindow.close(); }); // Add markers to the map // Set up three markers with info windows var point = new google.maps.LatLng(40.970826,-112.048187) var marker = createMarker(point,'Utah-Davis County'); var point = new google.maps.LatLng(40.235509,-111.660576) var marker = createMarker(point,'Utah-Provo'); var point = new google.maps.LatLng(40.766502,-111.897812) var marker = createMarker(point,'Utah-Salt Lake City'); } var infowindow = new google.maps.InfoWindow( { size: new google.maps.Size(150,50) }); function createMarker(latlng, html) { var contentString = html; var marker = new google.maps.Marker({ position: latlng, map: map, zIndex: Math.round(latlng.lat()*-100000)<<5 }); google.maps.event.addListener(marker, 'click', function() { infowindow.setContent(contentString); infowindow.open(map,marker); }); } function animate(lati,long) { var latLng = new google.maps.LatLng(lati, long); //Makes a latlng map.panTo(latLng); //Make map global } //]]> </script>
Is there a way to define a different icon color for a specific point?
source share