0
我的項目上安裝了Yandex Maps在Yandex Maps API中禁用集羣
下面的代碼顯示所有對象的集羣視圖。 我想要做的是禁用集羣
$.getJSON(ymFormAction , "ymJSON=1").done(function (json) {
window.geoObjects = ymaps.geoQuery(json);
window.clusters = geoObjects.search("geometry.type == 'Point'").clusterize({preset: 'islands#invertedblueClusterIcons'});
myMap[[+idMap]].geoObjects.add(clusters);
// Trying to disable clusters
var coords = geoObjects;
// coords should be = [[56.023, 36.988]] according to API
var myCollection = new ymaps.GeoObjectCollection();
for (var i = 0; i<coords.length; i++) {
myCollection.add(new ymaps.Placemark(coords[i]));
}
myMap[[+idMap]].geoObjects.add(myCollection);
});
這將導致一個空的地圖 –
我固定的答案。 –