我想要一个平面图层,在mapbox上给出坐标。我正在使用react-map-gl。 (https://github.com/uber/react-map-gl)。如何在地图上绘制图像叠加层。你能引用一些例子或其他东西吗?
答案 0 :(得分:0)
您可以使用image
类型的source
覆盖图片。例如:
"sources": {
"overlay": {
"type": "image",
"url": "https://www.mapbox.com/mapbox-gl-js/assets/radar.gif",
"coordinates": [
[-80.425, 46.437],
[-71.516, 46.437],
[-71.516, 37.936],
[-80.425, 37.936]
]
}
},
...
来自示例here。