首页 / 浏览问题 / 云GIS / 问题详情
openlayer可以在指定坐标绘制图片吗
8EXP 2020年06月19日
var pointLayer = new ol.layer.Vector({
source: new ol.source.Vector({
features: [point]
}),
style: new ol.style.Style({
image: new ol.style.Circle({
radius: 4,
fill: new ol.style.Fill({
color: 'black'
})
})
})
});
map.addLayer(pointLayer);

想在点处绘制图片

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日
...