gpt4 book ai didi

json - 带有 GeoJson 的传单 MarkerCluster

转载 作者:行者123 更新时间:2023-12-04 00:28:35 24 4
gpt4 key购买 nike

我目前正在使用外部 geojson 文件作为数据输入的传单项目。由于 json 包含很多对象,我想使用 MarkerCluster我从 Mappbox 得到的插件:

<script src='https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/leaflet.markercluster.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/MarkerCluster.css' rel='stylesheet' />
<link href='https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/MarkerCluster.Default.css' rel='stylesheet' />

在没有集群的情况下显示 json-layer 工作得很好,但是如果我尝试将它分配给集群,则不会显示任何内容。
var markersBar = L.markerClusterGroup();        
var barLayer = new L.GeoJSON.AJAX("json/eat_drink/bar.geojson", {
pointToLayer: function(feature, latlng) {
var icon = L.icon({
iconSize: [27, 27],
iconAnchor: [13, 27],
popupAnchor: [1, -24],
iconUrl: 'icon/' + feature.properties.amenity + '.png'
});
return L.marker(latlng, {icon: icon})
},
onEachFeature: function(feature, layer) {
layer.bindPopup(feature.properties.name + ': ' + feature.properties.opening_hours);
}
});
markersBar.addLayer(barLayer);
console.log(markersBar);
map.addLayer(markersBar);

console.log 输出让我假设没有对象,但我不明白为什么。
Object { options: Object, _featureGroup: Object, _leaflet_id: 24, _nonPointGroup: Object, _inZoomAnimation: 0, _needsClustering: Array[0], _needsRemoving: Array[0], _currentShownBounds: null, _queue: Array[0], _initHooksCalled: true }

我究竟做错了什么?

最佳答案

好吧,看起来您正在使用 Leaflet-Ajax ...因此发出异步请求以获取您的 geojson ..您的下一行是 markersBar.addLayer(barLayer); ..它不会包含任何内容,因为请求几乎肯定还没有完成......

相反,我相信您可以使用 documentation 中提供的加载事件。喜欢

barLayer.on('data:loaded', function () {
markersBar.addLayer(barLayer);
console.log(markersBar);
map.addLayer(markersBar);
});

关于json - 带有 GeoJson 的传单 MarkerCluster,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29824478/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com