function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 12,
center: {lat: 37.06, lng: -95.68}
});
var kmlLayer = new google.maps.KmlLayer({
url: 'http://googlemaps.github.io/kml-samples/kml/Placemark/placemark.kml',
suppressInfoWindows: true,
map: map
});
}
加载KML文件的简单示例,该文件将在地图上显示地标,取自:https://developers.google.com/maps/documentation/javascript/examples/layer-kml-features
我的问题是,如何切换地标?我希望首先禁用所有这些功能,但是当我运行测试,搜索或其他任何内容时,我可以显示某些内容。我怎么能这样做?