带有 geojson 数据的传单地图。弹窗无任何信息
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建 GeoJSON 层时,您需要将弹出窗口与信息绑定:
在 GeoJSON 教程<中查找更多信息/a>
You need to bind the popup with information while creating the GeoJSON layer:
Look for more infos into the GeoJSON Tutorial