I have a Google Maps ranking service (for my geography of Pennsylvania students) that works great with click points on basic Google files. I would like to add a kml layer showing PA counties. When I add it, height level information is no longer displayed. Is there a way to add kml but suppress its response to a click to show the response to the elevation?
Current code (partial):
function initialize() { var mapOptions = { zoom: 7, center: centerOfPA, mapTypeId: 'roadmap' } map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions); var paCounties = new google.maps.KmlLayer('http://mapmaker.millersville.edu/arcgis/services/PAcounties/MapServer/KmlServer', {suppressInfoWindows: true}); paCounties.setMap(map);
source share