带有 geojson 数据的传单地图。弹窗无任何信息

发布于 2025-01-11 22:30:29 字数 312 浏览 0 评论 0原文

我在 Leaflet 中创建了一个地图,并且有 GeoJSON 数据。我将数据添加到地图中。但在地图上,我点击时只有点,没有任何信息。我尝试添加 use this :

var marker = L.marker([51.5, -0.09]).addTo(map);
marker.bindPopup("<b>Hello world!</b><br>I am a popup.").openPopup();

但它也不起作用。有人可以帮我解决这个问题吗?

I created a map in Leaflet and I have GeoJSON data. I added my data to my map. But on the map, there are only points with no information when I click on them. I tried to add use this :

var marker = L.marker([51.5, -0.09]).addTo(map);
marker.bindPopup("<b>Hello world!</b><br>I am a popup.").openPopup();

But it didn't work either. Can someone help me on this ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拍不死你 2025-01-18 22:30:29

创建 GeoJSON 层时,您需要将弹出窗口与信息绑定:

L.geoJSON(data, {
    onEachFeature: function (feature, layer) {
        // does this feature have a property named popupContent?
        if (feature.properties && feature.properties.popupContent) {
            layer.bindPopup(feature.properties.popupContent);
        }
    }
}).addTo(map);

GeoJSON 教程<中查找更多信息/a>

You need to bind the popup with information while creating the GeoJSON layer:

L.geoJSON(data, {
    onEachFeature: function (feature, layer) {
        // does this feature have a property named popupContent?
        if (feature.properties && feature.properties.popupContent) {
            layer.bindPopup(feature.properties.popupContent);
        }
    }
}).addTo(map);

Look for more infos into the GeoJSON Tutorial

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文