我正在使用mapbox supercluster制作聚类地图。我面临的问题是群集不在正确的位置。例如,我在the netherlands
只养狗,但缩小时它们在法国。
当我进一步放大时,星团缓慢地向荷兰移动。当我滚动时,簇在地图上移动。
该问题可以在我的网站https://v2.sayhi.dog/?dog-map=true上看到。
我的代码如下(我使用vue.js):
<template>
<div class="w-full h-full" id="map"></div>
</template>
<script>
import mapboxgl from 'mapbox-gl'
import Supercluster from 'supercluster';
export default {
props: ['locations'],
data() {
return {
map: null,
copyLocations: this.locations,
clusters: [],
markers: [],
clustersGeojson: {},
clusterIndex: null,
}
},
mounted() {
mapboxgl.accessToken = 'my-token';
// init the map
this.map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://styles/sayhi/cjkp9e59x3m3y2rm1zbcc0c',
zoom: 2,
});
this.addControls();
this.map.on("load", () => { this.addMarkers() });
this.map.addControl(new mapboxgl.NavigationControl());
},
methods: {
addMarkers() {
this.clusterIndex = new Supercluster({
radius: 40,
maxZoom: 10
});
this.clusterIndex.load(this.locations.features);
this.map.on('moveend', () => { this.moveEnd(); });
this.updateClusters();
},
updateClusters() {
var bounds = this.map.getBounds(),
zoom = this.map.getZoom();
this.clustersGeojson = this.clusterIndex.getClusters([
bounds.getWest(),
bounds.getSouth(),
bounds.getEast(),
bounds.getNorth()
], Math.floor(zoom));
if (Object.keys(this.clusters).length) {
this.clusters.forEach(function(cluster) {
cluster.remove();
});
}
this.displayFeatures(this.clustersGeojson);
},
addControls() {
this.map.addControl(new mapboxgl.NavigationControl(), "bottom-right");
this.map.addControl(new mapboxgl.FullscreenControl(), "bottom-right");
},
moveEnd() {
this.updateClusters();
},
displayFeatures(features) {
if (this.markers.length) {
this.markers.forEach(function(marker) {
marker.remove();
});
}
features.forEach((feature) => {
var isCluster = (!!feature.properties.cluster) ? true : false,
$feature;
if (isCluster) {
var leaf = this.clusterIndex.getLeaves(feature.properties.cluster_id)[0];
$feature = document.createElement("div");
$feature.className = 'flex items-center justify-center w-12 h-12 rounded-full text-center text-white font-bold shadow bg-cover cursor-pointer bg-center';
$feature.style.backgroundImage = `url(${leaf.properties.image})`;
var $inner = document.createElement("div");
$inner.innerHTML = feature.properties.point_count_abbreviated;
$feature.appendChild($inner);
this.clusters[feature.properties.cluster_id] = new mapboxgl.Marker($feature).setLngLat(feature.geometry.coordinates).addTo(this.map);
} else {
$feature = document.createElement('div');
$feature.className = 'flex items-center justify-center w-12 h-12 rounded-full text-center text-white font-bold shadow bg-cover cursor-pointer bg-center';
$feature.style.backgroundImage = `url(${feature.properties.image})`;
this.markers.push(new mapboxgl.Marker($feature).setLngLat(feature.geometry.coordinates).addTo(this.map));
}
});
}
}
}
</script>
https://gist.github.com/larsjanssen6/ebb5d7e3887c885af4c65d294ca1fb77
这是一个非常令人沮丧的问题,我现在已经苦苦挣扎了几天,我们将不胜感激。
-更新-
我做了一个JSFiddle:
https://jsfiddle.net/obhstrvz/10/
希望有人可以提供帮助。
答案 0 :(得分:4)
页面加载后,开发人员工具控制台中会显示以下警告:
此页面似乎缺少Mapbox GL JS的CSS声明,这可能导致地图显示不正确。请确保您的页面包含mapbox-gl.css,如https://www.mapbox.com/mapbox-gl-js/api/中所述。
尽管Mapbox GL JS API参考未包含与mapbox-gl.css
相关的任何说明,但您可以在示例中找到其用法。通过开发人员工具将以下行添加到页面的<head>
部分中,从而消除了各种位置问题(除了标记外,还表现为缺少地图控件):
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v1.3.0/mapbox-gl.css' rel='stylesheet' />
请注意,您可能需要使用其他版本来匹配mapbox-gl.js
文件的版本。
答案 1 :(得分:2)
此链接here表示您需要标记的偏移量,以便它们始终保持居中状态,并且我认为您需要在代码中快速浏览
this.clusters[feature.properties.cluster_id] = new mapboxgl.Marker($feature,{ offset: 25 } ).setLngLat(feature.geometry.coordinates).addTo(this.map);
在这里
this.markers.push(new mapboxgl.Marker($feature, { offset: 25 }).setLngLat(feature.geometry.coordinates).addTo(this.map));