Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Mapbox-GL。我阻止了一些需要显而易见的事情。
如何将几何 (lng / lat) 转换为点 (x, y)?
有一个“Javascript库”书商吗?
那么,如果它是一个点、线、多边形或多多边形......
谢谢!
使用project地图对象的方法。
project
屏幕截图取自.mapbox-gl-js 文档project。
参考:https ://stackoverflow.com/a/23085119/4481169
map#project和“geojson-project”github.com/w8r/geojson-project
map#project
代码示例:
var shape = geojsonProject(object, function(coord) { var pt = map.project(coord.slice()) return [pt.x, pt.y]; },