gpt4 book ai didi

icons - 如何在 Leaflet.draw 编辑模式下设置 divicons 的样式?

转载 作者:行者123 更新时间:2023-12-04 23:42:49 28 4
gpt4 key购买 nike

使用 Leaflet.draw,我实例化了 drawControl I:

scope.drawOptions = {
position: 'topright',
draw: {
polyline: false,
polygon: {
icon: new L.DivIcon({
iconSize: new L.Point(16, 16),
className: 'leaflet-div-icon leaflet-editing-icon my-own-class'
}),
allowIntersection: false,
drawError: {
color: '#5878B8',
message: '<strong>Oh snap!<strong> you can\'t draw that!'
},
shapeOptions: shapeOptions
},
circle: false, // Turns off this drawing tool
rectangle: false,
marker: false
},
edit: {
featureGroup: self.featureGroup
}
};
scope.drawControl = new L.Control.Draw(scope.drawOptions);
map.addControl(scope.drawControl);

但是在进入编辑模式时,样式会恢复为“默认”。我试图用以下方法解决这个问题:
map.on('draw:editstart', function(e) {
scope.drawControl.setDrawingOptions({
polygon: {
icon: new L.DivIcon({
iconSize: new L.Point(16, 16),
className: 'leaflet-div-icon leaflet-editing-icon my-own-class'
})
},
})
});

但这没有帮助。有什么建议?

有一个封闭的 github 问题,但我无法弄清楚: https://github.com/Leaflet/Leaflet.draw/issues/48#issuecomment-141546589

如果有人想玩,我创建了这个 jfiddle: http://jsfiddle.net/markdickersonvt/mwz7pg2n/

最佳答案

this ?

基本上,我只是扩展了 L.Edit.Poly类(class)

L.Edit.Poly = L.Edit.Poly.extend({
options : {
icon: new L.DivIcon({
iconSize: new L.Point(20, 20),
className: 'leaflet-div-icon leaflet-editing-icon my-own-icon'
})
}
});

我以前用的 Draw例如,插件,滥用扩展默认方法来摆脱工具提示。我认为这是最好的做法,这就是为什么 leaflet是这样设计的。

关于icons - 如何在 Leaflet.draw 编辑模式下设置 divicons 的样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32763024/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com