gpt4 book ai didi

leaflet - 在 geoJSON 功能上使用 getBounds

转载 作者:行者123 更新时间:2023-12-03 19:45:26 31 4
gpt4 key购买 nike

我试过map.fitBounds(geojsonFeature.getBounds());我得到这个错误:

geojsonFeature.getBounds() is not a function.



这是代码: http://jsfiddle.net/0aqxktov/

这里出了什么问题?

提前致谢。

最佳答案

你的变量geojsonFeature只是一个对象,没有名为 getBounds() 的方法在那里,您可以轻松检查。

取而代之的是,为您的 geoJSON 图层命名...

var feature = L.geoJson(geojsonFeature).addTo(map);

并用它来调用 getBounds() :
map.fitBounds(feature.getBounds());

这是更新的 JSFiddle: http://jsfiddle.net/qofrgm2k/

关于leaflet - 在 geoJSON 功能上使用 getBounds,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54385218/

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