Мне нужна помощь с кластеризацией маркеров Google Apis. Я скопировал пример, и он работает, но когда я использую свои JSON данные из PHP и вставляю переменную, значки кластера отклоняются от выравнивания. Что не так?
Код:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Marker Clustering</title>
<style>
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
var data = <?php echo $json ?>;
var markers = [];
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 8,
center: {lat: 19.076090, lng: 72.877426}
//center: {lat: -28.024, lng: 140.887}
});
for (var i = 0; i < 50; i++) {
var latLng = new google.maps.LatLng(
data[i].lat,
data[i].lon
);
var marker = new google.maps.Marker({
position: latLng,
label: data[i].id
});
markers.push(marker);
}
// Add a marker clusterer to manage the markers.
var markerCluster = new MarkerClusterer(map, markers,
{imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m'});
}
</script>
<!-- Replace following script src -->
<script src="markerclustererplus@4.0.1.min.js">
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=my_key_here&callback=initMap">
</script>
</body>
</html>
Снимок экрана и Json файл для справки:
http://covidtrack.in/map/test.json
http://covidtrack.in/map/error.jpg