对于任何有传单或leaflet.draw插件的人:
我想在不使用leaflet.draw
工具栏的情况下开始绘制多边形。我设法通过在线搜索找到了允许编辑而不使用工具栏(layer.editing.enable();
)的属性(它不在主文档中)。我似乎无法找到如何在没有工具栏按钮的情况下开始绘制多边形。任何帮助将不胜感激!
谢谢:)
答案 0 :(得分:59)
这个简单的代码对我有用:
new L.Draw.Polyline(map, drawControl.options.polyline).enable();
只需将其放入自定义按钮的onclick处理程序(或任何您想要的位置)。
变量map
和drawControl
是对传单地图和绘图控件的引用。
深入了解源代码(leaflet.draw-src.js),您可以找到绘制其他元素以及编辑或删除它们的函数。
new L.Draw.Polygon(map, drawControl.options.polygon).enable()
new L.Draw.Rectangle(map, drawControl.options.rectangle).enable()
new L.Draw.Circle(map, drawControl.options.circle).enable()
new L.Draw.Marker(map, drawControl.options.marker).enable()
new L.EditToolbar.Edit(map, {
featureGroup: drawControl.options.featureGroup,
selectedPathOptions: drawControl.options.edit.selectedPathOptions
})
new L.EditToolbar.Delete(map, {
featureGroup: drawControl.options.featureGroup
})
我希望这对你也有用。
编辑:
L.EditToolbar.Edit
和L.EditToolbar.Delete
类公开了以下有用的方法:
答案 1 :(得分:4)
所以我已经为圆圈想出了这一点,但多边形应该是相同的。它实际上非常简单。希望以下代码能够回答您的问题,但如果没有让我知道,我可以发布更多信息或其他内容。
// Creates the circle on the map for the given latLng and Radius
// If the createdWithAddress flag is true, the circle will not update
// it's address according to its position.
createCircle: function(latLng, radius, createdWithAddress) {
if (!this.circle) {
var self = this,
centerIcon,
centerMarker;
centerIcon = new L.Icon({
iconUrl: '/assets/location_pin_24px.png',
iconSize: [24, 24],
iconAnchor: [12, 24],
shadowUrl: '/assets/marker-shadow.png',
shadowSize: [20, 20],
shadowAnchor:[6, 20]
})
// Setup the options for the circle -> Override icons, immediately editable
options = {
stroke: true,
color: '#333333',
opacity: 1.0,
weight: 4,
fillColor: '#FFFFFF',
moveIcon: centerIcon,
resizeIcon: new L.Icon({
iconUrl: '/assets/radius_handle_18px.png',
iconSize: [12, 12],
iconAnchor: [0,0]
})
}
if (someConfigVarYouDontNeedToKnow) {
options.editable = false
centerMarker = new L.Marker(latLng, { icon:centerIcon })
} else {
options.editable = true
}
// Create our location circle
// NOTE: I believe I had to modify Leaflet or Leaflet.draw to allow for passing in
// options, but you can make it editable with circle.editing.enable()
this.circle = L.circle([latLng.lat, latLng.lng], radius, options)
// Add event handlers to update the location
this.circle.on('add', function() {
if (!createdWithAddress) {
self.reverseGeocode(this.getLatLng())
}
self.updateCircleLocation(this.getLatLng(), this.getRadius())
self.updateMapView()
})
this.circle.on('edit', function() {
if (self.convertLatLngToString(this.getLatLng()) !== self.getLocationLatLng()) {
self.reverseGeocode(this.getLatLng())
}
self.updateCircleLocation(this.getLatLng(), this.getRadius())
self.updateMapView()
})
this.map.addLayer(this.circle)
if (centerMarker) {
centerMarker.addTo(this.map)
this.circle.redraw()
centerMarker.update()
}
}
},
很抱歉很多只是噪音,但它应该让你知道如何解决这个问题。您可以使用editing.enable()/。disable()控制编辑。
请务必对任何问题发表评论。祝你好运。
答案 2 :(得分:2)
我认为这个问题值得一提Jacob Toyes answer。您总是在 leaflet.draw 中使用处理程序绘图 - 而不是直接使用图层。如果要编辑图层,请使用保存在图层editing
字段中的处理程序,如:layer.editing.enable();
。如果要创建新图层,首先要创建一个新的处理程序:
// Define you draw handler somewhere where you click handler can access it. N.B. pass any draw options into the handler
var polygonDrawer = new L.Draw.Polyline(map);
// Assumming you have a Leaflet map accessible
map.on('draw:created', function (e) {
var type = e.layerType,
layer = e.layer;
// Do whatever you want with the layer.
// e.type will be the type of layer that has been draw (polyline, marker, polygon, rectangle, circle)
// E.g. add it to the map
layer.addTo(map);
});
// Click handler for you button to start drawing polygons
$('#draw_poly').click(function() {
polygonDrawer.enable();
});
到目前为止, leaflet.draw github页面上有一个例子:https://github.com/Leaflet/Leaflet.draw/blob/master/examples/edithandlers.html
尽管如此,我认为那里的处理程序还没有很好的记录。
如上所述,L.EditToolbar.Edit
和L.EditToolbar.Delete
会公开有趣的方法和事件,例如 editstart 和 editstop 。没有提到的是这两个类本身来自L.Handler
。
答案 3 :(得分:1)
虽然 BaCH 的解决方案可能是最好的,但我想添加一个单行解决方案,它实际上更面向未来(比深入研究未记录的 Leaflet Draw 方法)和最简单的。
document.querySelector('.leaflet-draw-draw-polygon').click();
就是这样。 您只是利用了工具栏的存在,但实际上,您并没有使用它。您可以以任何方式以编程方式启动绘图。您还可以使用 CSS 隐藏工具栏。
如果您想开始绘制不同的形状,请使用以下类之一:
.leaflet-draw-draw-polyline
.leaflet-draw-draw-rectangle
.leaflet-draw-draw-circle
.leaflet-draw-draw-marker
.leaflet-draw-draw-circlemarker