いくつかのマーカーでクラスタマーカーが正常に機能していますが、領域が溢れすぎてもクラスターは表示されません。私はJavascript APIを使用しています。Google Map Clusterer
this.map = new google.maps.Map(map, mapOptions);
this.markers = data.map((location) => {
if (location.location === null) return
const marker = new google.maps.Marker({
position: { lat: location.location.coordinates[0], lng: location.location.coordinates[1]},
map: this.map
});
return marker
});
const markerCluster = new MarkerClusterer(this.map, this.markers, {
imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m'
});
私は画像を投稿しますが、私はもっと評判が必要です。
私はヒートマップに切り替えるか、これはクラスターライブラリの既知の制限であるべきでしょうか?
EDIT は、それは私が179にマーカーの量を制限するとき、それはそれらすべてをクラスタリングし、私は180に制限したときに、第180がクラスタ外に配置されているようだ180個のマーカーの制限はでありません
問題を示す[mcve]を入力してください。 [私は何千ものマーカーを集めることができます(例)](http://www.geocodezip.com/v3_MW_example_map3_clustered.html) – geocodezip
私は問題を再現するためのプランナーを作成中です。私は角度を使用していることに言及することを忘れていたので、これを置くのはまともな場所になると思います。 –