GeoJSON 图层未显示在传单地图上

GeoJSON layer not showing up on leaflet map

我正在努力让我的 GeoJSON 点显示在传单地图上。

我尝试在 GeoJSON 中添加的 javascript 的代码:

        var coniferous = L.layerGroup();

        var geojsondata = new L.GeoJSON.AJAX("treedata2.geojson", {
        pointToLayer: function(geoJsonPoint, latlng) {return L.marker(latlng);}}).addTo(coniferous);

我已经在 html 文件的头部引用了 ajax 插件

    <script src="leaflet.ajax.js"></script>

GeoJSON文件代码如下

{
"type": "FeatureCollection",
"name": "Significant Trees",
"features": [
{"type": "Feature", "geometry": {"type": "Point", "coordinates": [-79.484593, 43.696533, 0.0]}, "properties": {"What_is_the_species_name": "Maple"}},
{"type": "Feature", "geometry": {"type": "Point", "coordinates": [-79.433099, 43.846487, 0.0]}, "properties": {"What_is_the_species_name": "Pine"}}
]
}

我也尝试过 coordsToLatLng,但这似乎不是问题,因为标记根本没有出现,甚至在错误的位置也没有出现。

您需要将图层组添加到地图中:var coniferous = L.layerGroup().addTo(map);