首页 / 浏览问题 / 云GIS / 问题详情
openlayer绘制的点,样式怎么设成图片
8EXP 2020年06月19日
绘制图片

1个回答

你好,你可以参考open layer示例https://iclient.supermap.io/examples/openlayers/editor.html#04_bufferAnalystService_geometry几何对象缓冲区 第160行到175行

var iconStyle = new ol.style.Style({
                    image: new ol.style.Icon(({
                        anchor: [0.5, 1],
                        src: '../img/marker-gold.png'
                    }))
                });

2,842EXP 2020年06月19日
...