У вас есть два набора маркеров: загруженные с помощью loadGeoJson
и набор маркеров, который вы добавите позже. Те из DataLayer находятся над теми, у которых есть прослушиватель щелчков, блокируя щелчок.
Самое простое исправление, скрыть маркеры из DataLayer с помощью: концептуальной скрипки
фрагмент кода:
function initMap() {
var myLatlng = new google.maps.LatLng(37.09024, -95.712891);
var mapOptions = {
zoom: 4,
center: myLatlng,
scrollwheel: false,
}
var map = new google.maps.Map(document.getElementById("regularMap"), mapOptions);
var infoWindow = new google.maps.InfoWindow;
geojson_url = 'https://raw.githubusercontent.com/eyeshu98/dummy/master/geodata.json',
map.data.loadGeoJson(geojson_url, null, loadMarkers);
map.data.setMap(null); // hide the datalayer
function loadMarkers() {
map.data.forEach(function(feature) {
// geojson format is [longitude, latitude] but google maps marker position attribute
// expects [latitude, longitude]
var latitude = feature.getGeometry().get().lat()
var longitude = feature.getGeometry().get().lng()
var titleText = feature.getProperty('Location ID')
var infowincontent = document.createElement('div');
var strong = document.createElement('strong');
strong.textContent = titleText
infowincontent.appendChild(strong);
infowincontent.appendChild(document.createElement('br'));
console.log(infowincontent);
var marker = new google.maps.Marker({
position: {lat: latitude, lng:longitude},
map: map,
clickable: true
});
marker.addListener('click', function() {
infoWindow.close();
infoWindow.setContent(infowincontent);
infoWindow.open(map, marker);
});
});
}
}
google.maps.event.addDomListener(window, 'load', initMap);
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#regularMap {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
<div id="regularMap"></div>
<!-- Replace the value of the key parameter with your own API key. -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCkUOdZ5y7hMm0yrcCQoCvLwzdM6M8s5qk"></script>