我有使用 Mapbox 地图设置标记的代码
$(function() {
mapboxgl.accessToken = 'pk.###';
var map = new mapboxgl.Map({
container: 'map-global',
style: '..'
});
var geojson = {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"title": "POI Title"
},
"geometry": {
"type": "Point",
"coordinates": [0, 0]
}
}
]
};
geojson.features.forEach(function(marker) {
// create a HTML element for each feature
var el = document.createElement('div');
el.className = 'marker';
new mapboxgl.Marker(el)
.setLngLat(marker.geometry.coordinates)
.setPopup(new mapboxgl.Popup()
.setHTML(marker.properties.title))
.addTo(map);
});
});
它工作正常。但我想GeoJSON
用作外部文件:
var geojson = 'file.geojson';
在这里我有一个问题 - 它不起作用:
TypeError: undefined is not an object (evaluate '"map.geojson".features.forEach')"。
有没有办法使用GeoJSON
带有自定义 HTML 标记的外部文件?