当我将标记添加到我的mapbox gl脚本时,它的位置使其中心指示位置,而不是基础。作为一个序列,标记似乎表明位置不正确。 Please see the screenshot
有没有办法更改用作坐标基础的图像部分?
提前致谢! Oktawia
答案 0 :(得分:0)
Use the icon-offset layout property to offset the icon from your coordinates
map.addLayer({
"id": "pointclick",
type: 'symbol',
source: 'pointclick',
"layout": {
"icon-image": "{marker-symbol}",
"icon-size":1,
"icon-offset": [0, -13]
},
"paint": {}
});