OpenLayer 画圆

画圆;

// 画圆
drawCircle(coordinate) {
    let iconFeature = new ol.Feature({
        geometry: new ol.geom.Point(coordinate),
    });
    let vectorLayer_Polygon = new ol.layer.Vector({
        source: new ol.source.Vector({
            features: [iconFeature]
        }),
        style: new ol.style.Style({
            stroke: new ol.style.Stroke({
                color: '#4473ff',
                width: 5
            }),
            image: new ol.style.Circle({    //形状
                radius: 5,
                fill: new ol.style.Fill({
                    color: '#4473ff'
                })
            }),
        })
    });
    this.map.addLayer(vectorLayer_Polygon);
},
全部评论

相关推荐

冲芭芭拉鸭:你这图还挺新,偷了。
投递美团等公司10个岗位
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务