L.drawVersion = "0.4.2"; L.Draw = {}; L.drawLocal = { draw: { toolbar: { actions: { title: "Cancella disegno", text: "Cancella" }, finish: { title: "Salva disegno", text: "Salva" }, undo: { title: "Cancella ultimo punto disegnato", text: "Cancella ultimo punto" }, buttons: { polyline: "Disegna una polilinea", polygon: "Disegna un poligono", rectangle: "Disegna un rettangolo", circle: "Disegna un cerchio", marker: "Disegna un punto" }, }, handlers: { circle: { tooltip: { start: "Click e trascina per disegnare un cerchio." }, radius: "Raggio" }, marker: { tooltip: { start: "Click sulla mappa per disegnare un punto." } }, polygon: { tooltip: { start: "Click sulla mappa per iniziare a disegnare il poligono.", cont: "Click per continuare a disegnare il poligono.", end: "Click sul primo punto per chiudere questa poligono." } }, polyline: { error: "Errore: i bordi della forma non possono incrociarsi!", tooltip: { start: "Click sulla mappa per iniziare a disegnare la linea.", cont: "Click per continuare a disegnare la linea.", end: "Click sull'ultimo punto per finire." } }, rectangle: { tooltip: { start: "Click e trascina per disegnare un rettangolo." } }, simpleshape: { tooltip: { end: "Rilascia il mouse per finire di disegnare." } }, }, }, edit: { toolbar: { actions: { save: { title: "Salva modifiche.", text: "Salva" }, cancel: { title: "Cancella modifiche, Annulla tutte le modifiche.", text: "Cancella" } }, buttons: { edit: "Modifica layers.", editDisabled: "Nessun layers da modificare.", remove: "Cancella layers.", removeDisabled: "Nessun layers da cancellare." }, }, handlers: { edit: { tooltip: { text: "Trascina l'indicatore per modificare la forma.", subtext: "Click su Annulla per annullare le modifiche." } }, remove: { tooltip: { text: "Click sulla forma per cancellarla" } } }, }, }; L.Draw.Event = {}; L.Draw.Event.CREATED = "draw:created"; L.Draw.Event.EDITED = "draw:edited"; L.Draw.Event.DELETED = "draw:deleted"; L.Draw.Event.DRAWSTART = "draw:drawstart"; L.Draw.Event.DRAWSTOP = "draw:drawstop"; L.Draw.Event.DRAWVERTEX = "draw:drawvertex"; L.Draw.Event.EDITSTART = "draw:editstart"; L.Draw.Event.EDITMOVE = "draw:editmove"; L.Draw.Event.EDITRESIZE = "draw:editresize"; L.Draw.Event.EDITVERTEX = "draw:editvertex"; L.Draw.Event.EDITSTOP = "draw:editstop"; L.Draw.Event.DELETESTART = "draw:deletestart"; L.Draw.Event.DELETESTOP = "draw:deletestop"; L.Toolbar = L.Class.extend({ includes: [L.Mixin.Events], initialize: function (options) { L.setOptions(this, options); this._modes = {}; this._actionButtons = []; this._activeMode = null; }, enabled: function () { return this._activeMode !== null; }, disable: function () { if (!this.enabled()) { return; } this._activeMode.handler.disable(); }, addToolbar: function (map) { var container = L.DomUtil.create("div", "leaflet-draw-section"), buttonIndex = 0, buttonClassPrefix = this._toolbarClass || "", modeHandlers = this.getModeHandlers(map), i; this._toolbarContainer = L.DomUtil.create("div", "leaflet-draw-toolbar leaflet-bar"); this._map = map; for (i = 0; i < modeHandlers.length; i++) { if (modeHandlers[i].enabled) { this._initModeHandler(modeHandlers[i].handler, this._toolbarContainer, buttonIndex++, buttonClassPrefix, modeHandlers[i].title); } } if (!buttonIndex) { return; } this._lastButtonIndex = --buttonIndex; this._actionsContainer = L.DomUtil.create("ul", "leaflet-draw-actions"); container.appendChild(this._toolbarContainer); container.appendChild(this._actionsContainer); return container; }, removeToolbar: function () { for (var handlerId in this._modes) { if (this._modes.hasOwnProperty(handlerId)) { this._disposeButton(this._modes[handlerId].button, this._modes[handlerId].handler.enable, this._modes[handlerId].handler); this._modes[handlerId].handler.disable(); this._modes[handlerId].handler.off("enabled", this._handlerActivated, this).off("disabled", this._handlerDeactivated, this); } } this._modes = {}; for (var i = 0, l = this._actionButtons.length; i < l; i++) { this._disposeButton(this._actionButtons[i].button, this._actionButtons[i].callback, this); } this._actionButtons = []; this._actionsContainer = null; }, _initModeHandler: function (handler, container, buttonIndex, classNamePredix, buttonTitle) { var type = handler.type; this._modes[type] = {}; this._modes[type].handler = handler; this._modes[type].button = this._createButton({ type: type, title: buttonTitle, className: classNamePredix + "-" + type, container: container, callback: this._modes[type].handler.enable, context: this._modes[type].handler }); this._modes[type].buttonIndex = buttonIndex; this._modes[type].handler.on("enabled", this._handlerActivated, this).on("disabled", this._handlerDeactivated, this); }, _createButton: function (options) { var link = L.DomUtil.create("a", options.className || "", options.container); var sr = L.DomUtil.create("span", "sr-only", options.container); link.href = "#"; link.appendChild(sr); if (options.title) { link.title = options.title; sr.innerHTML = options.title; } if (options.text) { link.innerHTML = options.text; sr.innerHTML = options.text; } L.DomEvent.on(link, "click", L.DomEvent.stopPropagation) .on(link, "mousedown", L.DomEvent.stopPropagation) .on(link, "dblclick", L.DomEvent.stopPropagation) .on(link, "touchstart", L.DomEvent.stopPropagation) .on(link, "click", L.DomEvent.preventDefault) .on(link, "click", options.callback, options.context); return link; }, _disposeButton: function (button, callback) { L.DomEvent.off(button, "click", L.DomEvent.stopPropagation) .off(button, "mousedown", L.DomEvent.stopPropagation) .off(button, "dblclick", L.DomEvent.stopPropagation) .off(button, "touchstart", L.DomEvent.stopPropagation) .off(button, "click", L.DomEvent.preventDefault) .off(button, "click", callback); }, _handlerActivated: function (e) { this.disable(); this._activeMode = this._modes[e.handler]; L.DomUtil.addClass(this._activeMode.button, "leaflet-draw-toolbar-button-enabled"); this._showActionsToolbar(); this.fire("enable"); }, _handlerDeactivated: function () { this._hideActionsToolbar(); L.DomUtil.removeClass(this._activeMode.button, "leaflet-draw-toolbar-button-enabled"); this._activeMode = null; this.fire("disable"); }, _createActions: function (handler) { var container = this._actionsContainer, buttons = this.getActions(handler), l = buttons.length, li, di, dl, button; for (di = 0, dl = this._actionButtons.length; di < dl; di++) { this._disposeButton(this._actionButtons[di].button, this._actionButtons[di].callback); } this._actionButtons = []; while (container.firstChild) { container.removeChild(container.firstChild); } for (var i = 0; i < l; i++) { if ("enabled" in buttons[i] && !buttons[i].enabled) { continue; } li = L.DomUtil.create("li", "", container); button = this._createButton({ title: buttons[i].title, text: buttons[i].text, container: li, callback: buttons[i].callback, context: buttons[i].context }); this._actionButtons.push({ button: button, callback: buttons[i].callback }); } }, _showActionsToolbar: function () { var buttonIndex = this._activeMode.buttonIndex, lastButtonIndex = this._lastButtonIndex, toolbarPosition = this._activeMode.button.offsetTop - 1; this._createActions(this._activeMode.handler); this._actionsContainer.style.top = toolbarPosition + "px"; if (buttonIndex === 0) { L.DomUtil.addClass(this._toolbarContainer, "leaflet-draw-toolbar-notop"); L.DomUtil.addClass(this._actionsContainer, "leaflet-draw-actions-top"); } if (buttonIndex === lastButtonIndex) { L.DomUtil.addClass(this._toolbarContainer, "leaflet-draw-toolbar-nobottom"); L.DomUtil.addClass(this._actionsContainer, "leaflet-draw-actions-bottom"); } this._actionsContainer.style.display = "block"; }, _hideActionsToolbar: function () { this._actionsContainer.style.display = "none"; L.DomUtil.removeClass(this._toolbarContainer, "leaflet-draw-toolbar-notop"); L.DomUtil.removeClass(this._toolbarContainer, "leaflet-draw-toolbar-nobottom"); L.DomUtil.removeClass(this._actionsContainer, "leaflet-draw-actions-top"); L.DomUtil.removeClass(this._actionsContainer, "leaflet-draw-actions-bottom"); }, }); L.Draw = L.Draw || {}; L.Draw.Tooltip = L.Class.extend({ initialize: function (map) { this._map = map; this._popupPane = map._panes.popupPane; this._container = map.options.drawControlTooltips ? L.DomUtil.create("div", "leaflet-draw-tooltip", this._popupPane) : null; this._singleLineLabel = false; this._map.on("mouseout", this._onMouseOut, this); }, dispose: function () { this._map.off("mouseout", this._onMouseOut, this); if (this._container) { this._popupPane.removeChild(this._container); this._container = null; } }, updateContent: function (labelText) { if (!this._container) { return this; } labelText.subtext = labelText.subtext || ""; if (labelText.subtext.length === 0 && !this._singleLineLabel) { L.DomUtil.addClass(this._container, "leaflet-draw-tooltip-single"); this._singleLineLabel = true; } else if (labelText.subtext.length > 0 && this._singleLineLabel) { L.DomUtil.removeClass(this._container, "leaflet-draw-tooltip-single"); this._singleLineLabel = false; } this._container.innerHTML = (labelText.subtext.length > 0 ? '' + labelText.subtext + "" + "
" : "") + "" + labelText.text + ""; return this; }, updatePosition: function (latlng) { var pos = this._map.latLngToLayerPoint(latlng), tooltipContainer = this._container; if (this._container) { tooltipContainer.style.visibility = "inherit"; L.DomUtil.setPosition(tooltipContainer, pos); } return this; }, showAsError: function () { if (this._container) { L.DomUtil.addClass(this._container, "leaflet-error-draw-tooltip"); } return this; }, removeError: function () { if (this._container) { L.DomUtil.removeClass(this._container, "leaflet-error-draw-tooltip"); } return this; }, _onMouseOut: function () { if (this._container) { this._container.style.visibility = "hidden"; } }, }); L.GeometryUtil = L.extend(L.GeometryUtil || {}, { geodesicArea: function (latLngs) { var pointsCount = latLngs.length, area = 0.0, d2r = Math.PI / 180, p1, p2; if (pointsCount > 2) { for (var i = 0; i < pointsCount; i++) { p1 = latLngs[i]; p2 = latLngs[(i + 1) % pointsCount]; area += (p2.lng - p1.lng) * d2r * (2 + Math.sin(p1.lat * d2r) + Math.sin(p2.lat * d2r)); } area = (area * 6378137.0 * 6378137.0) / 2.0; } return Math.abs(area); }, readableArea: function (area, isMetric) { var areaStr; if (isMetric) { if (area >= 10000) { areaStr = (area * 0.0001).toFixed(2) + " ha"; } else { areaStr = area.toFixed(2) + " m²"; } } else { area /= 0.836127; if (area >= 3097600) { areaStr = (area / 3097600).toFixed(2) + " mi²"; } else if (area >= 4840) { areaStr = (area / 4840).toFixed(2) + " acres"; } else { areaStr = Math.ceil(area) + " yd²"; } } return areaStr; }, readableDistance: function (distance, isMetric, isFeet, isNauticalMile) { var distanceStr, units; if (typeof isMetric == "string") { units = isMetric; } else { if (isFeet) { units = "feet"; } else if (isNauticalMile) { units = "nauticalMile"; } else if (isMetric) { units = "metric"; } else { units = "yards"; } } switch (units) { case "metric": if (distance > 1000) { distanceStr = (distance / 1000).toFixed(2) + " km"; } else { distanceStr = Math.ceil(distance) + " m"; } break; case "feet": distance *= 1.09361 * 3; distanceStr = Math.ceil(distance) + " ft"; break; case "nauticalMile": distance *= 0.53996; distanceStr = (distance / 1000).toFixed(2) + " nm"; break; case "yards": default: distance *= 1.09361; if (distance > 1760) { distanceStr = (distance / 1760).toFixed(2) + " miles"; } else { distanceStr = Math.ceil(distance) + " yd"; } break; } return distanceStr; }, }); L.LatLngUtil = { cloneLatLngs: function (latlngs) { var clone = []; for (var i = 0, l = latlngs.length; i < l; i++) { if (Array.isArray(latlngs[i])) { clone.push(L.LatLngUtil.cloneLatLngs(latlngs[i])); } else { clone.push(this.cloneLatLng(latlngs[i])); } } return clone; }, cloneLatLng: function (latlng) { return L.latLng(latlng.lat, latlng.lng); }, }; L.Util.extend(L.LineUtil, { segmentsIntersect: function (p, p1, p2, p3) { return this._checkCounterclockwise(p, p2, p3) !== this._checkCounterclockwise(p1, p2, p3) && this._checkCounterclockwise(p, p1, p2) !== this._checkCounterclockwise(p, p1, p3); }, _checkCounterclockwise: function (p, p1, p2) { return (p2.y - p.y) * (p1.x - p.x) > (p1.y - p.y) * (p2.x - p.x); }, }); L.Polygon.include({ intersects: function () { var polylineIntersects, points = this._getProjectedPoints(), len, firstPoint, lastPoint, maxIndex; if (this._tooFewPointsForIntersection()) { return false; } polylineIntersects = L.Polyline.prototype.intersects.call(this); if (polylineIntersects) { return true; } len = points.length; firstPoint = points[0]; lastPoint = points[len - 1]; maxIndex = len - 2; return this._lineSegmentsIntersectsRange(lastPoint, firstPoint, maxIndex, 1); }, }); L.Polyline.include({ intersects: function () { var points = this._getProjectedPoints(), len = points ? points.length : 0, i, p, p1; if (this._tooFewPointsForIntersection()) { return false; } for (i = len - 1; i >= 3; i--) { p = points[i - 1]; p1 = points[i]; if (this._lineSegmentsIntersectsRange(p, p1, i - 2)) { return true; } } return false; }, newLatLngIntersects: function (latlng, skipFirst) { if (!this._map) { return false; } return this.newPointIntersects(this._map.latLngToLayerPoint(latlng), skipFirst); }, newPointIntersects: function (newPoint, skipFirst) { var points = this._getProjectedPoints(), len = points ? points.length : 0, lastPoint = points ? points[len - 1] : null, maxIndex = len - 2; if (this._tooFewPointsForIntersection(1)) { return false; } return this._lineSegmentsIntersectsRange(lastPoint, newPoint, maxIndex, skipFirst ? 1 : 0); }, _tooFewPointsForIntersection: function (extraPoints) { var points = this._getProjectedPoints(), len = points ? points.length : 0; len += extraPoints || 0; return !points || len <= 3; }, _lineSegmentsIntersectsRange: function (p, p1, maxIndex, minIndex) { var points = this._getProjectedPoints(), p2, p3; minIndex = minIndex || 0; for (var j = maxIndex; j > minIndex; j--) { p2 = points[j - 1]; p3 = points[j]; if (L.LineUtil.segmentsIntersect(p, p1, p2, p3)) { return true; } } return false; }, _getProjectedPoints: function () { if (!this._defaultShape) { return this._originalPoints; } var points = [], _shape = this._defaultShape(); for (var i = 0; i < _shape.length; i++) { points.push(this._map.latLngToLayerPoint(_shape[i])); } return points; }, }); L.Map.mergeOptions({ touchExtend: true }); L.Map.TouchExtend = L.Handler.extend({ initialize: function (map) { this._map = map; this._container = map._container; this._pane = map._panes.overlayPane; }, addHooks: function () { L.DomEvent.on(this._container, "touchstart", this._onTouchStart, this); L.DomEvent.on(this._container, "touchend", this._onTouchEnd, this); L.DomEvent.on(this._container, "touchmove", this._onTouchMove, this); if (this._detectIE()) { L.DomEvent.on(this._container, "MSPointerDown", this._onTouchStart, this); L.DomEvent.on(this._container, "MSPointerUp", this._onTouchEnd, this); L.DomEvent.on(this._container, "MSPointerMove", this._onTouchMove, this); L.DomEvent.on(this._container, "MSPointerCancel", this._onTouchCancel, this); } else { L.DomEvent.on(this._container, "touchcancel", this._onTouchCancel, this); L.DomEvent.on(this._container, "touchleave", this._onTouchLeave, this); } }, removeHooks: function () { L.DomEvent.off(this._container, "touchstart", this._onTouchStart); L.DomEvent.off(this._container, "touchend", this._onTouchEnd); L.DomEvent.off(this._container, "touchmove", this._onTouchMove); if (this._detectIE()) { L.DomEvent.off(this._container, "MSPointerDowm", this._onTouchStart); L.DomEvent.off(this._container, "MSPointerUp", this._onTouchEnd); L.DomEvent.off(this._container, "MSPointerMove", this._onTouchMove); L.DomEvent.off(this._container, "MSPointerCancel", this._onTouchCancel); } else { L.DomEvent.off(this._container, "touchcancel", this._onTouchCancel); L.DomEvent.off(this._container, "touchleave", this._onTouchLeave); } }, _touchEvent: function (e, type) { var touchEvent = {}; if (typeof e.touches !== "undefined") { if (!e.touches.length) { return; } touchEvent = e.touches[0]; } else if (e.pointerType === "touch") { touchEvent = e; if (!this._filterClick(e)) { return; } } else { return; } var containerPoint = this._map.mouseEventToContainerPoint(touchEvent), layerPoint = this._map.mouseEventToLayerPoint(touchEvent), latlng = this._map.layerPointToLatLng(layerPoint); this._map.fire(type, { latlng: latlng, layerPoint: layerPoint, containerPoint: containerPoint, pageX: touchEvent.pageX, pageY: touchEvent.pageY, originalEvent: e }); }, _filterClick: function (e) { var timeStamp = e.timeStamp || e.originalEvent.timeStamp, elapsed = L.DomEvent._lastClick && timeStamp - L.DomEvent._lastClick; if ((elapsed && elapsed > 100 && elapsed < 500) || (e.target._simulatedClick && !e._simulated)) { L.DomEvent.stop(e); return false; } L.DomEvent._lastClick = timeStamp; return true; }, _onTouchStart: function (e) { if (!this._map._loaded) { return; } var type = "touchstart"; this._touchEvent(e, type); }, _onTouchEnd: function (e) { if (!this._map._loaded) { return; } var type = "touchend"; this._touchEvent(e, type); }, _onTouchCancel: function (e) { if (!this._map._loaded) { return; } var type = "touchcancel"; if (this._detectIE()) { type = "pointercancel"; } this._touchEvent(e, type); }, _onTouchLeave: function (e) { if (!this._map._loaded) { return; } var type = "touchleave"; this._touchEvent(e, type); }, _onTouchMove: function (e) { if (!this._map._loaded) { return; } var type = "touchmove"; this._touchEvent(e, type); }, _detectIE: function () { var ua = window.navigator.userAgent; var msie = ua.indexOf("MSIE "); if (msie > 0) { return parseInt(ua.substring(msie + 5, ua.indexOf(".", msie)), 10); } var trident = ua.indexOf("Trident/"); if (trident > 0) { var rv = ua.indexOf("rv:"); return parseInt(ua.substring(rv + 3, ua.indexOf(".", rv)), 10); } var edge = ua.indexOf("Edge/"); if (edge > 0) { return parseInt(ua.substring(edge + 5, ua.indexOf(".", edge)), 10); } return false; }, }); L.Map.addInitHook("addHandler", "touchExtend", L.Map.TouchExtend); L.Marker.Touch = L.Marker.extend({ _initInteraction: function () { if (!this.addInteractiveTarget) { return this._initInteractionLegacy(); } return L.Marker.prototype._initInteraction.apply(this); }, _initInteractionLegacy: function () { if (!this.options.clickable) { return; } var icon = this._icon, events = ["dblclick", "mousedown", "mouseover", "mouseout", "contextmenu", "touchstart", "touchend", "touchmove"]; if (this._detectIE) { events.concat(["MSPointerDown", "MSPointerUp", "MSPointerMove", "MSPointerCancel"]); } else { events.concat(["touchcancel"]); } L.DomUtil.addClass(icon, "leaflet-clickable"); L.DomEvent.on(icon, "click", this._onMouseClick, this); L.DomEvent.on(icon, "keypress", this._onKeyPress, this); for (var i = 0; i < events.length; i++) { L.DomEvent.on(icon, events[i], this._fireMouseEvent, this); } if (L.Handler.MarkerDrag) { this.dragging = new L.Handler.MarkerDrag(this); if (this.options.draggable) { this.dragging.enable(); } } }, _detectIE: function () { var ua = window.navigator.userAgent; var msie = ua.indexOf("MSIE "); if (msie > 0) { return parseInt(ua.substring(msie + 5, ua.indexOf(".", msie)), 10); } var trident = ua.indexOf("Trident/"); if (trident > 0) { var rv = ua.indexOf("rv:"); return parseInt(ua.substring(rv + 3, ua.indexOf(".", rv)), 10); } var edge = ua.indexOf("Edge/"); if (edge > 0) { return parseInt(ua.substring(edge + 5, ua.indexOf(".", edge)), 10); } return false; }, }); L.DrawToolbar = L.Toolbar.extend({ statics: { TYPE: "draw" }, options: { polyline: {}, polygon: {}, rectangle: {}, circle: {}, marker: {} }, initialize: function (options) { for (var type in this.options) { if (this.options.hasOwnProperty(type)) { if (options[type]) { options[type] = L.extend({}, this.options[type], options[type]); } } } this._toolbarClass = "leaflet-draw-draw"; L.Toolbar.prototype.initialize.call(this, options); }, getModeHandlers: function (map) { return [ { enabled: this.options.polyline, handler: new L.Draw.Polyline(map, this.options.polyline), title: L.drawLocal.draw.toolbar.buttons.polyline }, { enabled: this.options.polygon, handler: new L.Draw.Polygon(map, this.options.polygon), title: L.drawLocal.draw.toolbar.buttons.polygon }, { enabled: this.options.rectangle, handler: new L.Draw.Rectangle(map, this.options.rectangle), title: L.drawLocal.draw.toolbar.buttons.rectangle }, { enabled: this.options.circle, handler: new L.Draw.Circle(map, this.options.circle), title: L.drawLocal.draw.toolbar.buttons.circle }, { enabled: this.options.marker, handler: new L.Draw.Marker(map, this.options.marker), title: L.drawLocal.draw.toolbar.buttons.marker }, ]; }, getActions: function (handler) { return [ { enabled: handler.completeShape, title: L.drawLocal.draw.toolbar.finish.title, text: L.drawLocal.draw.toolbar.finish.text, callback: handler.completeShape, context: handler }, { enabled: handler.deleteLastVertex, title: L.drawLocal.draw.toolbar.undo.title, text: L.drawLocal.draw.toolbar.undo.text, callback: handler.deleteLastVertex, context: handler }, { title: L.drawLocal.draw.toolbar.actions.title, text: L.drawLocal.draw.toolbar.actions.text, callback: this.disable, context: this }, ]; }, setOptions: function (options) { L.setOptions(this, options); for (var type in this._modes) { if (this._modes.hasOwnProperty(type) && options.hasOwnProperty(type)) { this._modes[type].handler.setOptions(options[type]); } } }, }); L.Draw = L.Draw || {}; L.Draw.Feature = L.Handler.extend({ includes: L.Mixin.Events, initialize: function (map, options) { this._map = map; this._container = map._container; this._overlayPane = map._panes.overlayPane; this._popupPane = map._panes.popupPane; if (options && options.shapeOptions) { options.shapeOptions = L.Util.extend({}, this.options.shapeOptions, options.shapeOptions); } L.setOptions(this, options); }, enable: function () { if (this._enabled) { return; } L.Handler.prototype.enable.call(this); this.fire("enabled", { handler: this.type }); this._map.fire(L.Draw.Event.DRAWSTART, { layerType: this.type }); }, disable: function () { if (!this._enabled) { return; } L.Handler.prototype.disable.call(this); this._map.fire(L.Draw.Event.DRAWSTOP, { layerType: this.type }); this.fire("disabled", { handler: this.type }); }, addHooks: function () { var map = this._map; if (map) { L.DomUtil.disableTextSelection(); map.getContainer().focus(); this._tooltip = new L.Draw.Tooltip(this._map); L.DomEvent.on(this._container, "keyup", this._cancelDrawing, this); } }, removeHooks: function () { if (this._map) { L.DomUtil.enableTextSelection(); this._tooltip.dispose(); this._tooltip = null; L.DomEvent.off(this._container, "keyup", this._cancelDrawing, this); } }, setOptions: function (options) { L.setOptions(this, options); }, _fireCreatedEvent: function (layer) { this._map.fire(L.Draw.Event.CREATED, { layer: layer, layerType: this.type }); }, _cancelDrawing: function (e) { this._map.fire("draw:canceled", { layerType: this.type }); if (e.keyCode === 27) { this.disable(); } }, }); L.SimpleShape = {}; L.Draw.SimpleShape = L.Draw.Feature.extend({ options: { repeatMode: false }, initialize: function (map, options) { this._endLabelText = L.drawLocal.draw.handlers.simpleshape.tooltip.end; L.Draw.Feature.prototype.initialize.call(this, map, options); }, addHooks: function () { L.Draw.Feature.prototype.addHooks.call(this); if (this._map) { this._mapDraggable = this._map.dragging.enabled(); if (this._mapDraggable) { this._map.dragging.disable(); } this._container.style.cursor = "crosshair"; this._tooltip.updateContent({ text: this._initialLabelText }); this._map.on("mousedown", this._onMouseDown, this).on("mousemove", this._onMouseMove, this).on("touchstart", this._onMouseDown, this).on("touchmove", this._onMouseMove, this); } }, removeHooks: function () { L.Draw.Feature.prototype.removeHooks.call(this); if (this._map) { if (this._mapDraggable) { this._map.dragging.enable(); } this._container.style.cursor = ""; this._map.off("mousedown", this._onMouseDown, this).off("mousemove", this._onMouseMove, this).off("touchstart", this._onMouseDown, this).off("touchmove", this._onMouseMove, this); L.DomEvent.off(document, "mouseup", this._onMouseUp, this); L.DomEvent.off(document, "touchend", this._onMouseUp, this); if (this._shape) { this._map.removeLayer(this._shape); delete this._shape; } } this._isDrawing = false; }, _getTooltipText: function () { return { text: this._endLabelText }; }, _onMouseDown: function (e) { this._isDrawing = true; this._startLatLng = e.latlng; L.DomEvent.on(document, "mouseup", this._onMouseUp, this).on(document, "touchend", this._onMouseUp, this).preventDefault(e.originalEvent); }, _onMouseMove: function (e) { var latlng = e.latlng; this._tooltip.updatePosition(latlng); if (this._isDrawing) { this._tooltip.updateContent(this._getTooltipText()); this._drawShape(latlng); } }, _onMouseUp: function () { if (this._shape) { this._fireCreatedEvent(); } this.disable(); if (this.options.repeatMode) { this.enable(); } }, }); L.Draw.Polyline = L.Draw.Feature.extend({ statics: { TYPE: "polyline" }, Poly: L.Polyline, options: { allowIntersection: true, repeatMode: false, drawError: { color: "#b00b00", timeout: 2500 }, icon: new L.DivIcon({ iconSize: new L.Point(8, 8), className: "leaflet-div-icon leaflet-editing-icon" }), touchIcon: new L.DivIcon({ iconSize: new L.Point(20, 20), className: "leaflet-div-icon leaflet-editing-icon leaflet-touch-icon" }), guidelineDistance: 20, maxGuideLineLength: 4000, shapeOptions: { stroke: true, color: "#3388ff", weight: 4, opacity: 0.5, fill: false, clickable: true }, metric: true, feet: true, nautic: false, showLength: true, zIndexOffset: 2000, }, initialize: function (map, options) { if (L.Browser.touch) { this.options.icon = this.options.touchIcon; } this.options.drawError.message = L.drawLocal.draw.handlers.polyline.error; if (options && options.drawError) { options.drawError = L.Util.extend({}, this.options.drawError, options.drawError); } this.type = L.Draw.Polyline.TYPE; L.Draw.Feature.prototype.initialize.call(this, map, options); }, addHooks: function () { L.Draw.Feature.prototype.addHooks.call(this); if (this._map) { this._markers = []; this._markerGroup = new L.LayerGroup(); this._map.addLayer(this._markerGroup); this._poly = new L.Polyline([], this.options.shapeOptions); this._tooltip.updateContent(this._getTooltipText()); if (!this._mouseMarker) { this._mouseMarker = L.marker(this._map.getCenter(), { icon: L.divIcon({ className: "leaflet-mouse-marker", iconAnchor: [20, 20], iconSize: [40, 40] }), opacity: 0, zIndexOffset: this.options.zIndexOffset }); } this._mouseMarker.on("mouseout", this._onMouseOut, this).on("mousemove", this._onMouseMove, this).on("mousedown", this._onMouseDown, this).on("mouseup", this._onMouseUp, this).addTo(this._map); this._map.on("mouseup", this._onMouseUp, this).on("mousemove", this._onMouseMove, this).on("zoomlevelschange", this._onZoomEnd, this).on("touchstart", this._onTouch, this).on("zoomend", this._onZoomEnd, this); } }, removeHooks: function () { L.Draw.Feature.prototype.removeHooks.call(this); this._clearHideErrorTimeout(); this._cleanUpShape(); this._map.removeLayer(this._markerGroup); delete this._markerGroup; delete this._markers; this._map.removeLayer(this._poly); delete this._poly; this._mouseMarker.off("mousedown", this._onMouseDown, this).off("mouseout", this._onMouseOut, this).off("mouseup", this._onMouseUp, this).off("mousemove", this._onMouseMove, this); this._map.removeLayer(this._mouseMarker); delete this._mouseMarker; this._clearGuides(); this._map .off("mouseup", this._onMouseUp, this) .off("mousemove", this._onMouseMove, this) .off("zoomlevelschange", this._onZoomEnd, this) .off("zoomend", this._onZoomEnd, this) .off("touchstart", this._onTouch, this) .off("click", this._onTouch, this); }, deleteLastVertex: function () { if (this._markers.length <= 1) { return; } var lastMarker = this._markers.pop(), poly = this._poly, latlngs = poly.getLatLngs(), latlng = latlngs.splice(-1, 1)[0]; this._poly.setLatLngs(latlngs); this._markerGroup.removeLayer(lastMarker); if (poly.getLatLngs().length < 2) { this._map.removeLayer(poly); } this._vertexChanged(latlng, false); }, addVertex: function (latlng) { var markersLength = this._markers.length; if (markersLength >= 2 && !this.options.allowIntersection && this._poly.newLatLngIntersects(latlng)) { this._showErrorTooltip(); return; } else if (this._errorShown) { this._hideErrorTooltip(); } this._markers.push(this._createMarker(latlng)); this._poly.addLatLng(latlng); if (this._poly.getLatLngs().length === 2) { this._map.addLayer(this._poly); } this._vertexChanged(latlng, true); }, completeShape: function () { if (this._markers.length <= 1) { return; } this._fireCreatedEvent(); this.disable(); if (this.options.repeatMode) { this.enable(); } }, _finishShape: function () { var latlngs = this._poly._defaultShape ? this._poly._defaultShape() : this._poly.getLatLngs(); var intersects = this._poly.newLatLngIntersects(latlngs[latlngs.length - 1]); if ((!this.options.allowIntersection && intersects) || !this._shapeIsValid()) { this._showErrorTooltip(); return; } this._fireCreatedEvent(); this.disable(); if (this.options.repeatMode) { this.enable(); } }, _shapeIsValid: function () { return true; }, _onZoomEnd: function () { if (this._markers !== null) { this._updateGuide(); } }, _onMouseMove: function (e) { var newPos = this._map.mouseEventToLayerPoint(e.originalEvent); var latlng = this._map.layerPointToLatLng(newPos); this._currentLatLng = latlng; this._updateTooltip(latlng); this._updateGuide(newPos); this._mouseMarker.setLatLng(latlng); L.DomEvent.preventDefault(e.originalEvent); }, _vertexChanged: function (latlng, added) { this._map.fire(L.Draw.Event.DRAWVERTEX, { layers: this._markerGroup }); this._updateFinishHandler(); this._updateRunningMeasure(latlng, added); this._clearGuides(); this._updateTooltip(); }, _onMouseDown: function (e) { if (!this._clickHandled && !this._touchHandled && !this._disableMarkers) { this._onMouseMove(e); this._clickHandled = true; this._disableNewMarkers(); var originalEvent = e.originalEvent; var clientX = originalEvent.clientX; var clientY = originalEvent.clientY; this._startPoint.call(this, clientX, clientY); } }, _startPoint: function (clientX, clientY) { this._mouseDownOrigin = L.point(clientX, clientY); }, _onMouseUp: function (e) { var originalEvent = e.originalEvent; var clientX = originalEvent.clientX; var clientY = originalEvent.clientY; this._endPoint.call(this, clientX, clientY, e); this._clickHandled = null; }, _endPoint: function (clientX, clientY, e) { if (this._mouseDownOrigin) { var dragCheckDistance = L.point(clientX, clientY).distanceTo(this._mouseDownOrigin); var lastPtDistance = this._calculateFinishDistance(e.latlng); if (lastPtDistance < 10 && L.Browser.touch) { this._finishShape(); } else if (Math.abs(dragCheckDistance) < 9 * (window.devicePixelRatio || 1)) { this.addVertex(e.latlng); } this._enableNewMarkers(); } this._mouseDownOrigin = null; }, _onTouch: function (e) { var originalEvent = e.originalEvent; var clientX; var clientY; if (originalEvent.touches && originalEvent.touches[0] && !this._clickHandled && !this._touchHandled && !this._disableMarkers) { clientX = originalEvent.touches[0].clientX; clientY = originalEvent.touches[0].clientY; this._disableNewMarkers(); this._touchHandled = true; this._startPoint.call(this, clientX, clientY); this._endPoint.call(this, clientX, clientY, e); this._touchHandled = null; } this._clickHandled = null; }, _onMouseOut: function () { if (this._tooltip) { this._tooltip._onMouseOut.call(this._tooltip); } }, _calculateFinishDistance: function (potentialLatLng) { var lastPtDistance; if (this._markers.length > 0) { var finishMarker; if (this.type === L.Draw.Polyline.TYPE) { finishMarker = this._markers[this._markers.length - 1]; } else if (this.type === L.Draw.Polygon.TYPE) { finishMarker = this._markers[0]; } else { return Infinity; } var lastMarkerPoint = this._map.latLngToContainerPoint(finishMarker.getLatLng()), potentialMarker = new L.Marker(potentialLatLng, { icon: this.options.icon, zIndexOffset: this.options.zIndexOffset * 2 }); var potentialMarkerPint = this._map.latLngToContainerPoint(potentialMarker.getLatLng()); lastPtDistance = lastMarkerPoint.distanceTo(potentialMarkerPint); } else { lastPtDistance = Infinity; } return lastPtDistance; }, _updateFinishHandler: function () { var markerCount = this._markers.length; if (markerCount > 1) { this._markers[markerCount - 1].on("click", this._finishShape, this); } if (markerCount > 2) { this._markers[markerCount - 2].off("click", this._finishShape, this); } }, _createMarker: function (latlng) { var marker = new L.Marker(latlng, { icon: this.options.icon, zIndexOffset: this.options.zIndexOffset * 2 }); this._markerGroup.addLayer(marker); return marker; }, _updateGuide: function (newPos) { var markerCount = this._markers ? this._markers.length : 0; if (markerCount > 0) { newPos = newPos || this._map.latLngToLayerPoint(this._currentLatLng); this._clearGuides(); this._drawGuide(this._map.latLngToLayerPoint(this._markers[markerCount - 1].getLatLng()), newPos); } }, _updateTooltip: function (latLng) { var text = this._getTooltipText(); if (latLng) { this._tooltip.updatePosition(latLng); } if (!this._errorShown) { this._tooltip.updateContent(text); } }, _drawGuide: function (pointA, pointB) { var length = Math.floor(Math.sqrt(Math.pow(pointB.x - pointA.x, 2) + Math.pow(pointB.y - pointA.y, 2))), guidelineDistance = this.options.guidelineDistance, maxGuideLineLength = this.options.maxGuideLineLength, i = length > maxGuideLineLength ? length - maxGuideLineLength : guidelineDistance, fraction, dashPoint, dash; if (!this._guidesContainer) { this._guidesContainer = L.DomUtil.create("div", "leaflet-draw-guides", this._overlayPane); } for (; i < length; i += this.options.guidelineDistance) { fraction = i / length; dashPoint = { x: Math.floor(pointA.x * (1 - fraction) + fraction * pointB.x), y: Math.floor(pointA.y * (1 - fraction) + fraction * pointB.y) }; dash = L.DomUtil.create("div", "leaflet-draw-guide-dash", this._guidesContainer); dash.style.backgroundColor = !this._errorShown ? this.options.shapeOptions.color : this.options.drawError.color; L.DomUtil.setPosition(dash, dashPoint); } }, _updateGuideColor: function (color) { if (this._guidesContainer) { for (var i = 0, l = this._guidesContainer.childNodes.length; i < l; i++) { this._guidesContainer.childNodes[i].style.backgroundColor = color; } } }, _clearGuides: function () { if (this._guidesContainer) { while (this._guidesContainer.firstChild) { this._guidesContainer.removeChild(this._guidesContainer.firstChild); } } }, _getTooltipText: function () { var showLength = this.options.showLength, labelText, distanceStr; if (L.Browser.touch) { showLength = false; } if (this._markers.length === 0) { labelText = { text: L.drawLocal.draw.handlers.polyline.tooltip.start }; } else { distanceStr = showLength ? this._getMeasurementString() : ""; if (this._markers.length === 1) { labelText = { text: L.drawLocal.draw.handlers.polyline.tooltip.cont, subtext: distanceStr }; } else { labelText = { text: L.drawLocal.draw.handlers.polyline.tooltip.end, subtext: distanceStr }; } } return labelText; }, _updateRunningMeasure: function (latlng, added) { var markersLength = this._markers.length, previousMarkerIndex, distance; if (this._markers.length === 1) { this._measurementRunningTotal = 0; } else { previousMarkerIndex = markersLength - (added ? 2 : 1); distance = latlng.distanceTo(this._markers[previousMarkerIndex].getLatLng()); this._measurementRunningTotal += distance * (added ? 1 : -1); } }, _getMeasurementString: function () { var currentLatLng = this._currentLatLng, previousLatLng = this._markers[this._markers.length - 1].getLatLng(), distance; distance = this._measurementRunningTotal + currentLatLng.distanceTo(previousLatLng); return L.GeometryUtil.readableDistance(distance, this.options.metric, this.options.feet, this.options.nautic); }, _showErrorTooltip: function () { this._errorShown = true; this._tooltip.showAsError().updateContent({ text: this.options.drawError.message }); this._updateGuideColor(this.options.drawError.color); this._poly.setStyle({ color: this.options.drawError.color }); this._clearHideErrorTimeout(); this._hideErrorTimeout = setTimeout(L.Util.bind(this._hideErrorTooltip, this), this.options.drawError.timeout); }, _hideErrorTooltip: function () { this._errorShown = false; this._clearHideErrorTimeout(); this._tooltip.removeError().updateContent(this._getTooltipText()); this._updateGuideColor(this.options.shapeOptions.color); this._poly.setStyle({ color: this.options.shapeOptions.color }); }, _clearHideErrorTimeout: function () { if (this._hideErrorTimeout) { clearTimeout(this._hideErrorTimeout); this._hideErrorTimeout = null; } }, _disableNewMarkers: function () { this._disableMarkers = true; }, _enableNewMarkers: function () { setTimeout( function () { this._disableMarkers = false; }.bind(this), 50 ); }, _cleanUpShape: function () { if (this._markers.length > 1) { this._markers[this._markers.length - 1].off("click", this._finishShape, this); } }, _fireCreatedEvent: function () { var poly = new this.Poly(this._poly.getLatLngs(), this.options.shapeOptions); L.Draw.Feature.prototype._fireCreatedEvent.call(this, poly); }, }); L.Draw.Circle = L.Draw.SimpleShape.extend({ statics: { TYPE: "circle" }, options: { shapeOptions: { stroke: true, color: "#3388ff", weight: 4, opacity: 0.5, fill: true, fillColor: null, fillOpacity: 0.2, clickable: true }, showRadius: true, metric: true, feet: true, nautic: false }, initialize: function (map, options) { this.type = L.Draw.Circle.TYPE; this._initialLabelText = L.drawLocal.draw.handlers.circle.tooltip.start; L.Draw.SimpleShape.prototype.initialize.call(this, map, options); }, _drawShape: function (latlng) { if (!this._shape) { this._shape = new L.Circle(this._startLatLng, this._startLatLng.distanceTo(latlng), this.options.shapeOptions); this._map.addLayer(this._shape); } else { this._shape.setRadius(this._startLatLng.distanceTo(latlng)); } }, _fireCreatedEvent: function () { var circle = new L.Circle(this._startLatLng, this._shape.getRadius(), this.options.shapeOptions); L.Draw.SimpleShape.prototype._fireCreatedEvent.call(this, circle); }, _onMouseMove: function (e) { var latlng = e.latlng, showRadius = this.options.showRadius, useMetric = this.options.metric, radius; this._tooltip.updatePosition(latlng); if (this._isDrawing) { this._drawShape(latlng); radius = this._shape.getRadius().toFixed(1); var subtext = ""; if (showRadius) { subtext = L.drawLocal.draw.handlers.circle.radius + ": " + L.GeometryUtil.readableDistance(radius, useMetric, this.options.feet, this.options.nautic); } this._tooltip.updateContent({ text: this._endLabelText, subtext: subtext }); } }, }); L.Draw.Marker = L.Draw.Feature.extend({ statics: { TYPE: "marker" }, options: { icon: new L.Icon.Default(), repeatMode: false, zIndexOffset: 2000 }, initialize: function (map, options) { this.type = L.Draw.Marker.TYPE; L.Draw.Feature.prototype.initialize.call(this, map, options); }, addHooks: function () { L.Draw.Feature.prototype.addHooks.call(this); if (this._map) { this._tooltip.updateContent({ text: L.drawLocal.draw.handlers.marker.tooltip.start }); if (!this._mouseMarker) { this._mouseMarker = L.marker(this._map.getCenter(), { icon: L.divIcon({ className: "leaflet-mouse-marker", iconAnchor: [20, 20], iconSize: [40, 40] }), opacity: 0, zIndexOffset: this.options.zIndexOffset }); } this._mouseMarker.on("click", this._onClick, this).addTo(this._map); this._map.on("mousemove", this._onMouseMove, this); this._map.on("click", this._onTouch, this); } }, removeHooks: function () { L.Draw.Feature.prototype.removeHooks.call(this); if (this._map) { if (this._marker) { this._marker.off("click", this._onClick, this); this._map.off("click", this._onClick, this).off("click", this._onTouch, this).removeLayer(this._marker); delete this._marker; } this._mouseMarker.off("click", this._onClick, this); this._map.removeLayer(this._mouseMarker); delete this._mouseMarker; this._map.off("mousemove", this._onMouseMove, this); } }, _onMouseMove: function (e) { var latlng = e.latlng; this._tooltip.updatePosition(latlng); this._mouseMarker.setLatLng(latlng); if (!this._marker) { this._marker = new L.Marker(latlng, { icon: this.options.icon, zIndexOffset: this.options.zIndexOffset }); this._marker.on("click", this._onClick, this); this._map.on("click", this._onClick, this).addLayer(this._marker); } else { latlng = this._mouseMarker.getLatLng(); this._marker.setLatLng(latlng); } }, _onClick: function () { this._fireCreatedEvent(); this.disable(); if (this.options.repeatMode) { this.enable(); } }, _onTouch: function (e) { this._onMouseMove(e); this._onClick(); }, _fireCreatedEvent: function () { var marker = new L.Marker.Touch(this._marker.getLatLng(), { icon: this.options.icon }); L.Draw.Feature.prototype._fireCreatedEvent.call(this, marker); }, }); L.Draw.Polygon = L.Draw.Polyline.extend({ statics: { TYPE: "polygon" }, Poly: L.Polygon, options: { showArea: false, shapeOptions: { stroke: true, color: "#3388ff", weight: 4, opacity: 0.5, fill: true, fillColor: null, fillOpacity: 0.2, clickable: true }, metric: true }, initialize: function (map, options) { L.Draw.Polyline.prototype.initialize.call(this, map, options); this.type = L.Draw.Polygon.TYPE; }, _updateFinishHandler: function () { var markerCount = this._markers.length; if (markerCount === 1) { this._markers[0].on("click", this._finishShape, this); } if (markerCount > 2) { this._markers[markerCount - 1].on("dblclick", this._finishShape, this); if (markerCount > 3) { this._markers[markerCount - 2].off("dblclick", this._finishShape, this); } } }, _getTooltipText: function () { var text, subtext; if (this._markers.length === 0) { text = L.drawLocal.draw.handlers.polygon.tooltip.start; } else if (this._markers.length < 3) { text = L.drawLocal.draw.handlers.polygon.tooltip.cont; } else { text = L.drawLocal.draw.handlers.polygon.tooltip.end; subtext = this._getMeasurementString(); } return { text: text, subtext: subtext }; }, _getMeasurementString: function () { var area = this._area; if (!area) { return null; } return L.GeometryUtil.readableArea(area, this.options.metric); }, _shapeIsValid: function () { return this._markers.length >= 3; }, _vertexChanged: function (latlng, added) { var latLngs; if (!this.options.allowIntersection && this.options.showArea) { latLngs = this._poly.getLatLngs(); this._area = L.GeometryUtil.geodesicArea(latLngs); } L.Draw.Polyline.prototype._vertexChanged.call(this, latlng, added); }, _cleanUpShape: function () { var markerCount = this._markers.length; if (markerCount > 0) { this._markers[0].off("click", this._finishShape, this); if (markerCount > 2) { this._markers[markerCount - 1].off("dblclick", this._finishShape, this); } } }, }); L.Draw.Rectangle = L.Draw.SimpleShape.extend({ statics: { TYPE: "rectangle" }, options: { shapeOptions: { stroke: true, color: "#3388ff", weight: 4, opacity: 0.5, fill: true, fillColor: null, fillOpacity: 0.2, showArea: true, clickable: true }, metric: true }, initialize: function (map, options) { this.type = L.Draw.Rectangle.TYPE; this._initialLabelText = L.drawLocal.draw.handlers.rectangle.tooltip.start; L.Draw.SimpleShape.prototype.initialize.call(this, map, options); }, _drawShape: function (latlng) { if (!this._shape) { this._shape = new L.Rectangle(new L.LatLngBounds(this._startLatLng, latlng), this.options.shapeOptions); this._map.addLayer(this._shape); } else { this._shape.setBounds(new L.LatLngBounds(this._startLatLng, latlng)); } }, _fireCreatedEvent: function () { var rectangle = new L.Rectangle(this._shape.getBounds(), this.options.shapeOptions); L.Draw.SimpleShape.prototype._fireCreatedEvent.call(this, rectangle); }, _getTooltipText: function () { var tooltipText = L.Draw.SimpleShape.prototype._getTooltipText.call(this), shape = this._shape, showArea = this.options.showArea, latLngs, area, subtext; if (shape) { latLngs = this._shape._defaultShape ? this._shape._defaultShape() : this._shape.getLatLngs(); area = L.GeometryUtil.geodesicArea(latLngs); subtext = showArea ? L.GeometryUtil.readableArea(area, this.options.metric) : ""; } return { text: tooltipText.text, subtext: subtext }; }, }); L.EditToolbar = L.Toolbar.extend({ statics: { TYPE: "edit" }, options: { edit: { selectedPathOptions: { dashArray: "10, 10", fill: true, fillColor: "#fe57a1", fillOpacity: 0.1, maintainColor: false } }, remove: {}, poly: null, featureGroup: null }, initialize: function (options) { if (options.edit) { if (typeof options.edit.selectedPathOptions === "undefined") { options.edit.selectedPathOptions = this.options.edit.selectedPathOptions; } options.edit.selectedPathOptions = L.extend({}, this.options.edit.selectedPathOptions, options.edit.selectedPathOptions); } if (options.remove) { options.remove = L.extend({}, this.options.remove, options.remove); } if (options.poly) { options.poly = L.extend({}, this.options.poly, options.poly); } this._toolbarClass = "leaflet-draw-edit"; L.Toolbar.prototype.initialize.call(this, options); this._selectedFeatureCount = 0; }, getModeHandlers: function (map) { var featureGroup = this.options.featureGroup; return [ { enabled: this.options.edit, handler: new L.EditToolbar.Edit(map, { featureGroup: featureGroup, selectedPathOptions: this.options.edit.selectedPathOptions, poly: this.options.poly }), title: L.drawLocal.edit.toolbar.buttons.edit, }, { enabled: this.options.remove, handler: new L.EditToolbar.Delete(map, { featureGroup: featureGroup }), title: L.drawLocal.edit.toolbar.buttons.remove }, ]; }, getActions: function () { return [ { title: L.drawLocal.edit.toolbar.actions.save.title, text: L.drawLocal.edit.toolbar.actions.save.text, callback: this._save, context: this }, { title: L.drawLocal.edit.toolbar.actions.cancel.title, text: L.drawLocal.edit.toolbar.actions.cancel.text, callback: this.disable, context: this }, ]; }, addToolbar: function (map) { var container = L.Toolbar.prototype.addToolbar.call(this, map); this._checkDisabled(); this.options.featureGroup.on("layeradd layerremove", this._checkDisabled, this); return container; }, removeToolbar: function () { this.options.featureGroup.off("layeradd layerremove", this._checkDisabled, this); L.Toolbar.prototype.removeToolbar.call(this); }, disable: function () { if (!this.enabled()) { return; } this._activeMode.handler.revertLayers(); L.Toolbar.prototype.disable.call(this); }, _save: function () { this._activeMode.handler.save(); if (this._activeMode) { this._activeMode.handler.disable(); } }, _checkDisabled: function () { var featureGroup = this.options.featureGroup, hasLayers = featureGroup.getLayers().length !== 0, button; if (this.options.edit) { button = this._modes[L.EditToolbar.Edit.TYPE].button; if (hasLayers) { L.DomUtil.removeClass(button, "leaflet-disabled"); } else { L.DomUtil.addClass(button, "leaflet-disabled"); } button.setAttribute("title", hasLayers ? L.drawLocal.edit.toolbar.buttons.edit : L.drawLocal.edit.toolbar.buttons.editDisabled); } if (this.options.remove) { button = this._modes[L.EditToolbar.Delete.TYPE].button; if (hasLayers) { L.DomUtil.removeClass(button, "leaflet-disabled"); } else { L.DomUtil.addClass(button, "leaflet-disabled"); } button.setAttribute("title", hasLayers ? L.drawLocal.edit.toolbar.buttons.remove : L.drawLocal.edit.toolbar.buttons.removeDisabled); } }, }); L.EditToolbar.Edit = L.Handler.extend({ statics: { TYPE: "edit" }, includes: L.Mixin.Events, initialize: function (map, options) { L.Handler.prototype.initialize.call(this, map); L.setOptions(this, options); this._featureGroup = options.featureGroup; if (!(this._featureGroup instanceof L.FeatureGroup)) { throw new Error("options.featureGroup must be a L.FeatureGroup"); } this._uneditedLayerProps = {}; this.type = L.EditToolbar.Edit.TYPE; }, enable: function () { if (this._enabled || !this._hasAvailableLayers()) { return; } this.fire("enabled", { handler: this.type }); this._map.fire(L.Draw.Event.EDITSTART, { handler: this.type }); L.Handler.prototype.enable.call(this); this._featureGroup.on("layeradd", this._enableLayerEdit, this).on("layerremove", this._disableLayerEdit, this); }, disable: function () { if (!this._enabled) { return; } this._featureGroup.off("layeradd", this._enableLayerEdit, this).off("layerremove", this._disableLayerEdit, this); L.Handler.prototype.disable.call(this); this._map.fire(L.Draw.Event.EDITSTOP, { handler: this.type }); this.fire("disabled", { handler: this.type }); }, addHooks: function () { var map = this._map; if (map) { map.getContainer().focus(); this._featureGroup.eachLayer(this._enableLayerEdit, this); this._tooltip = new L.Draw.Tooltip(this._map); this._tooltip.updateContent({ text: L.drawLocal.edit.handlers.edit.tooltip.text, subtext: L.drawLocal.edit.handlers.edit.tooltip.subtext }); map._editTooltip = this._tooltip; this._updateTooltip(); this._map.on("mousemove", this._onMouseMove, this).on("touchmove", this._onMouseMove, this).on("MSPointerMove", this._onMouseMove, this).on(L.Draw.Event.EDITVERTEX, this._updateTooltip, this); } }, removeHooks: function () { if (this._map) { this._featureGroup.eachLayer(this._disableLayerEdit, this); this._uneditedLayerProps = {}; this._tooltip.dispose(); this._tooltip = null; this._map.off("mousemove", this._onMouseMove, this).off("touchmove", this._onMouseMove, this).off("MSPointerMove", this._onMouseMove, this).off(L.Draw.Event.EDITVERTEX, this._updateTooltip, this); } }, revertLayers: function () { this._featureGroup.eachLayer(function (layer) { this._revertLayer(layer); }, this); }, save: function () { var editedLayers = new L.LayerGroup(); this._featureGroup.eachLayer(function (layer) { if (layer.edited) { editedLayers.addLayer(layer); layer.edited = false; } }); this._map.fire(L.Draw.Event.EDITED, { layers: editedLayers }); }, _backupLayer: function (layer) { var id = L.Util.stamp(layer); if (!this._uneditedLayerProps[id]) { if (layer instanceof L.Polyline || layer instanceof L.Polygon || layer instanceof L.Rectangle) { this._uneditedLayerProps[id] = { latlngs: L.LatLngUtil.cloneLatLngs(layer.getLatLngs()) }; } else if (layer instanceof L.Circle) { this._uneditedLayerProps[id] = { latlng: L.LatLngUtil.cloneLatLng(layer.getLatLng()), radius: layer.getRadius() }; } else if (layer instanceof L.Marker) { this._uneditedLayerProps[id] = { latlng: L.LatLngUtil.cloneLatLng(layer.getLatLng()) }; } } }, _getTooltipText: function () { return { text: L.drawLocal.edit.handlers.edit.tooltip.text, subtext: L.drawLocal.edit.handlers.edit.tooltip.subtext }; }, _updateTooltip: function () { this._tooltip.updateContent(this._getTooltipText()); }, _revertLayer: function (layer) { var id = L.Util.stamp(layer); layer.edited = false; if (this._uneditedLayerProps.hasOwnProperty(id)) { if (layer instanceof L.Polyline || layer instanceof L.Polygon || layer instanceof L.Rectangle) { layer.setLatLngs(this._uneditedLayerProps[id].latlngs); } else if (layer instanceof L.Circle) { layer.setLatLng(this._uneditedLayerProps[id].latlng); layer.setRadius(this._uneditedLayerProps[id].radius); } else if (layer instanceof L.Marker) { layer.setLatLng(this._uneditedLayerProps[id].latlng); } layer.fire("revert-edited", { layer: layer }); } }, _enableLayerEdit: function (e) { var layer = e.layer || e.target || e, pathOptions, poly; this._backupLayer(layer); if (this.options.poly) { poly = L.Util.extend({}, this.options.poly); layer.options.poly = poly; } if (this.options.selectedPathOptions) { pathOptions = L.Util.extend({}, this.options.selectedPathOptions); if (pathOptions.maintainColor) { pathOptions.color = layer.options.color; pathOptions.fillColor = layer.options.fillColor; } layer.options.original = L.extend({}, layer.options); layer.options.editing = pathOptions; } if (layer instanceof L.Marker) { if (layer.editing) { layer.editing.enable(); } layer.dragging.enable(); layer.on("dragend", this._onMarkerDragEnd).on("touchmove", this._onTouchMove, this).on("MSPointerMove", this._onTouchMove, this).on("touchend", this._onMarkerDragEnd, this).on("MSPointerUp", this._onMarkerDragEnd, this); } else { layer.editing.enable(); } }, _disableLayerEdit: function (e) { var layer = e.layer || e.target || e; layer.edited = false; if (layer.editing) { layer.editing.disable(); } delete layer.options.editing; delete layer.options.original; if (this._selectedPathOptions) { if (layer instanceof L.Marker) { this._toggleMarkerHighlight(layer); } else { layer.setStyle(layer.options.previousOptions); delete layer.options.previousOptions; } } if (layer instanceof L.Marker) { layer.dragging.disable(); layer .off("dragend", this._onMarkerDragEnd, this) .off("touchmove", this._onTouchMove, this) .off("MSPointerMove", this._onTouchMove, this) .off("touchend", this._onMarkerDragEnd, this) .off("MSPointerUp", this._onMarkerDragEnd, this); } else { layer.editing.disable(); } }, _onMouseMove: function (e) { this._tooltip.updatePosition(e.latlng); }, _onMarkerDragEnd: function (e) { var layer = e.target; layer.edited = true; this._map.fire(L.Draw.Event.EDITMOVE, { layer: layer }); }, _onTouchMove: function (e) { var touchEvent = e.originalEvent.changedTouches[0], layerPoint = this._map.mouseEventToLayerPoint(touchEvent), latlng = this._map.layerPointToLatLng(layerPoint); e.target.setLatLng(latlng); }, _hasAvailableLayers: function () { return this._featureGroup.getLayers().length !== 0; }, }); L.EditToolbar.Delete = L.Handler.extend({ statics: { TYPE: "remove" }, includes: L.Mixin.Events, initialize: function (map, options) { L.Handler.prototype.initialize.call(this, map); L.Util.setOptions(this, options); this._deletableLayers = this.options.featureGroup; if (!(this._deletableLayers instanceof L.FeatureGroup)) { throw new Error("options.featureGroup must be a L.FeatureGroup"); } this.type = L.EditToolbar.Delete.TYPE; }, enable: function () { if (this._enabled || !this._hasAvailableLayers()) { return; } this.fire("enabled", { handler: this.type }); this._map.fire(L.Draw.Event.DELETESTART, { handler: this.type }); L.Handler.prototype.enable.call(this); this._deletableLayers.on("layeradd", this._enableLayerDelete, this).on("layerremove", this._disableLayerDelete, this); }, disable: function () { if (!this._enabled) { return; } this._deletableLayers.off("layeradd", this._enableLayerDelete, this).off("layerremove", this._disableLayerDelete, this); L.Handler.prototype.disable.call(this); this._map.fire(L.Draw.Event.DELETESTOP, { handler: this.type }); this.fire("disabled", { handler: this.type }); }, addHooks: function () { var map = this._map; if (map) { map.getContainer().focus(); this._deletableLayers.eachLayer(this._enableLayerDelete, this); this._deletedLayers = new L.LayerGroup(); this._tooltip = new L.Draw.Tooltip(this._map); this._tooltip.updateContent({ text: L.drawLocal.edit.handlers.remove.tooltip.text }); this._map.on("mousemove", this._onMouseMove, this); } }, removeHooks: function () { if (this._map) { this._deletableLayers.eachLayer(this._disableLayerDelete, this); this._deletedLayers = null; this._tooltip.dispose(); this._tooltip = null; this._map.off("mousemove", this._onMouseMove, this); } }, revertLayers: function () { this._deletedLayers.eachLayer(function (layer) { this._deletableLayers.addLayer(layer); layer.fire("revert-deleted", { layer: layer }); }, this); }, save: function () { this._map.fire(L.Draw.Event.DELETED, { layers: this._deletedLayers }); }, _enableLayerDelete: function (e) { var layer = e.layer || e.target || e; layer.on("click", this._removeLayer, this); }, _disableLayerDelete: function (e) { var layer = e.layer || e.target || e; layer.off("click", this._removeLayer, this); this._deletedLayers.removeLayer(layer); }, _removeLayer: function (e) { var layer = e.layer || e.target || e; this._deletableLayers.removeLayer(layer); this._deletedLayers.addLayer(layer); layer.fire("deleted"); }, _onMouseMove: function (e) { this._tooltip.updatePosition(e.latlng); }, _hasAvailableLayers: function () { return this._deletableLayers.getLayers().length !== 0; }, }); L.Control.Draw = L.Control.extend({ options: { position: "topleft", draw: {}, edit: false }, initialize: function (options) { if (L.version < "0.7") { throw new Error("Leaflet.draw 0.2.3+ requires Leaflet 0.7.0+. Download latest from https://github.com/Leaflet/Leaflet/"); } L.Control.prototype.initialize.call(this, options); var toolbar; this._toolbars = {}; if (L.DrawToolbar && this.options.draw) { toolbar = new L.DrawToolbar(this.options.draw); this._toolbars[L.DrawToolbar.TYPE] = toolbar; this._toolbars[L.DrawToolbar.TYPE].on("enable", this._toolbarEnabled, this); } if (L.EditToolbar && this.options.edit) { toolbar = new L.EditToolbar(this.options.edit); this._toolbars[L.EditToolbar.TYPE] = toolbar; this._toolbars[L.EditToolbar.TYPE].on("enable", this._toolbarEnabled, this); } L.toolbar = this; }, onAdd: function (map) { var container = L.DomUtil.create("div", "leaflet-draw"), addedTopClass = false, topClassName = "leaflet-draw-toolbar-top", toolbarContainer; for (var toolbarId in this._toolbars) { if (this._toolbars.hasOwnProperty(toolbarId)) { toolbarContainer = this._toolbars[toolbarId].addToolbar(map); if (toolbarContainer) { if (!addedTopClass) { if (!L.DomUtil.hasClass(toolbarContainer, topClassName)) { L.DomUtil.addClass(toolbarContainer.childNodes[0], topClassName); } addedTopClass = true; } container.appendChild(toolbarContainer); } } } return container; }, onRemove: function () { for (var toolbarId in this._toolbars) { if (this._toolbars.hasOwnProperty(toolbarId)) { this._toolbars[toolbarId].removeToolbar(); } } }, setDrawingOptions: function (options) { for (var toolbarId in this._toolbars) { if (this._toolbars[toolbarId] instanceof L.DrawToolbar) { this._toolbars[toolbarId].setOptions(options); } } }, _toolbarEnabled: function (e) { var enabledToolbar = e.target; for (var toolbarId in this._toolbars) { if (this._toolbars[toolbarId] !== enabledToolbar) { this._toolbars[toolbarId].disable(); } } }, }); L.Map.mergeOptions({ drawControlTooltips: true, drawControl: false }); L.Map.addInitHook(function () { if (this.options.drawControl) { this.drawControl = new L.Control.Draw(); this.addControl(this.drawControl); } }); L.Edit = L.Edit || {}; L.Edit.Poly = L.Handler.extend({ options: {}, initialize: function (poly, options) { this.latlngs = [poly._latlngs]; if (poly._holes) { this.latlngs = this.latlngs.concat(poly._holes); } this._poly = poly; L.setOptions(this, options); this._poly.on("revert-edited", this._updateLatLngs, this); }, _defaultShape: function () { if (!L.Polyline._flat) { return this._poly._latlngs; } return L.Polyline._flat(this._poly._latlngs) ? this._poly._latlngs : this._poly._latlngs[0]; }, _eachVertexHandler: function (callback) { for (var i = 0; i < this._verticesHandlers.length; i++) { callback(this._verticesHandlers[i]); } }, addHooks: function () { this._initHandlers(); this._eachVertexHandler(function (handler) { handler.addHooks(); }); }, removeHooks: function () { this._eachVertexHandler(function (handler) { handler.removeHooks(); }); }, updateMarkers: function () { this._eachVertexHandler(function (handler) { handler.updateMarkers(); }); }, _initHandlers: function () { this._verticesHandlers = []; for (var i = 0; i < this.latlngs.length; i++) { this._verticesHandlers.push(new L.Edit.PolyVerticesEdit(this._poly, this.latlngs[i], this.options)); } }, _updateLatLngs: function (e) { this.latlngs = [e.layer._latlngs]; if (e.layer._holes) { this.latlngs = this.latlngs.concat(e.layer._holes); } }, }); L.Edit.PolyVerticesEdit = L.Handler.extend({ options: { icon: new L.DivIcon({ iconSize: new L.Point(8, 8), className: "leaflet-div-icon leaflet-editing-icon" }), touchIcon: new L.DivIcon({ iconSize: new L.Point(20, 20), className: "leaflet-div-icon leaflet-editing-icon leaflet-touch-icon" }), drawError: { color: "#b00b00", timeout: 1000 }, }, initialize: function (poly, latlngs, options) { if (L.Browser.touch) { this.options.icon = this.options.touchIcon; } this._poly = poly; if (options && options.drawError) { options.drawError = L.Util.extend({}, this.options.drawError, options.drawError); } this._latlngs = latlngs; L.setOptions(this, options); }, _defaultShape: function () { if (!L.Polyline._flat) { return this._latlngs; } return L.Polyline._flat(this._latlngs) ? this._latlngs : this._latlngs[0]; }, addHooks: function () { var poly = this._poly; if (!(poly instanceof L.Polygon)) { poly.options.fill = false; if (poly.options.editing) { poly.options.editing.fill = false; } } poly.setStyle(poly.options.editing); if (this._poly._map) { this._map = this._poly._map; if (!this._markerGroup) { this._initMarkers(); } this._poly._map.addLayer(this._markerGroup); } }, removeHooks: function () { var poly = this._poly; poly.setStyle(poly.options.original); if (poly._map) { poly._map.removeLayer(this._markerGroup); delete this._markerGroup; delete this._markers; } }, updateMarkers: function () { this._markerGroup.clearLayers(); this._initMarkers(); }, _initMarkers: function () { if (!this._markerGroup) { this._markerGroup = new L.LayerGroup(); } this._markers = []; var latlngs = this._defaultShape(), i, j, len, marker; for (i = 0, len = latlngs.length; i < len; i++) { marker = this._createMarker(latlngs[i], i); marker.on("click", this._onMarkerClick, this); this._markers.push(marker); } var markerLeft, markerRight; for (i = 0, j = len - 1; i < len; j = i++) { if (i === 0 && !(L.Polygon && this._poly instanceof L.Polygon)) { continue; } markerLeft = this._markers[j]; markerRight = this._markers[i]; this._createMiddleMarker(markerLeft, markerRight); this._updatePrevNext(markerLeft, markerRight); } }, _createMarker: function (latlng, index) { var marker = new L.Marker.Touch(latlng, { draggable: true, icon: this.options.icon }); marker._origLatLng = latlng; marker._index = index; marker .on("dragstart", this._onMarkerDragStart, this) .on("drag", this._onMarkerDrag, this) .on("dragend", this._fireEdit, this) .on("touchmove", this._onTouchMove, this) .on("touchend", this._fireEdit, this) .on("MSPointerMove", this._onTouchMove, this) .on("MSPointerUp", this._fireEdit, this); this._markerGroup.addLayer(marker); return marker; }, _onMarkerDragStart: function () { this._poly.fire("editstart"); }, _spliceLatLngs: function () { var latlngs = this._defaultShape(); var removed = [].splice.apply(latlngs, arguments); this._poly._convertLatLngs(latlngs, true); this._poly.redraw(); return removed; }, _removeMarker: function (marker) { var i = marker._index; this._markerGroup.removeLayer(marker); this._markers.splice(i, 1); this._spliceLatLngs(i, 1); this._updateIndexes(i, -1); marker .off("dragstart", this._onMarkerDragStart, this) .off("drag", this._onMarkerDrag, this) .off("dragend", this._fireEdit, this) .off("touchmove", this._onMarkerDrag, this) .off("touchend", this._fireEdit, this) .off("click", this._onMarkerClick, this) .off("MSPointerMove", this._onTouchMove, this) .off("MSPointerUp", this._fireEdit, this); }, _fireEdit: function () { this._poly.edited = true; this._poly.fire("edit"); this._poly._map.fire(L.Draw.Event.EDITVERTEX, { layers: this._markerGroup, poly: this._poly }); }, _onMarkerDrag: function (e) { var marker = e.target; var poly = this._poly; L.extend(marker._origLatLng, marker._latlng); if (marker._middleLeft) { marker._middleLeft.setLatLng(this._getMiddleLatLng(marker._prev, marker)); } if (marker._middleRight) { marker._middleRight.setLatLng(this._getMiddleLatLng(marker, marker._next)); } if (poly.options.poly) { var tooltip = poly._map._editTooltip; if (!poly.options.poly.allowIntersection && poly.intersects()) { var originalColor = poly.options.color; poly.setStyle({ color: this.options.drawError.color }); if (L.version.indexOf("0.7") !== 0) { marker.dragging._draggable._onUp(e); } this._onMarkerClick(e); if (tooltip) { tooltip.updateContent({ text: L.drawLocal.draw.handlers.polyline.error }); } setTimeout(function () { poly.setStyle({ color: originalColor }); if (tooltip) { tooltip.updateContent({ text: L.drawLocal.edit.handlers.edit.tooltip.text, subtext: L.drawLocal.edit.handlers.edit.tooltip.subtext }); } }, 1000); } } this._poly.redraw(); this._poly.fire("editdrag"); }, _onMarkerClick: function (e) { var minPoints = L.Polygon && this._poly instanceof L.Polygon ? 4 : 3, marker = e.target; if (this._defaultShape().length < minPoints) { return; } this._removeMarker(marker); this._updatePrevNext(marker._prev, marker._next); if (marker._middleLeft) { this._markerGroup.removeLayer(marker._middleLeft); } if (marker._middleRight) { this._markerGroup.removeLayer(marker._middleRight); } if (marker._prev && marker._next) { this._createMiddleMarker(marker._prev, marker._next); } else if (!marker._prev) { marker._next._middleLeft = null; } else if (!marker._next) { marker._prev._middleRight = null; } this._fireEdit(); }, _onTouchMove: function (e) { var layerPoint = this._map.mouseEventToLayerPoint(e.originalEvent.touches[0]), latlng = this._map.layerPointToLatLng(layerPoint), marker = e.target; L.extend(marker._origLatLng, latlng); if (marker._middleLeft) { marker._middleLeft.setLatLng(this._getMiddleLatLng(marker._prev, marker)); } if (marker._middleRight) { marker._middleRight.setLatLng(this._getMiddleLatLng(marker, marker._next)); } this._poly.redraw(); this.updateMarkers(); }, _updateIndexes: function (index, delta) { this._markerGroup.eachLayer(function (marker) { if (marker._index > index) { marker._index += delta; } }); }, _createMiddleMarker: function (marker1, marker2) { var latlng = this._getMiddleLatLng(marker1, marker2), marker = this._createMarker(latlng), onClick, onDragStart, onDragEnd; marker.setOpacity(0.6); marker1._middleRight = marker2._middleLeft = marker; onDragStart = function () { marker.off("touchmove", onDragStart, this); var i = marker2._index; marker._index = i; marker.off("click", onClick, this).on("click", this._onMarkerClick, this); latlng.lat = marker.getLatLng().lat; latlng.lng = marker.getLatLng().lng; this._spliceLatLngs(i, 0, latlng); this._markers.splice(i, 0, marker); marker.setOpacity(1); this._updateIndexes(i, 1); marker2._index++; this._updatePrevNext(marker1, marker); this._updatePrevNext(marker, marker2); this._poly.fire("editstart"); }; onDragEnd = function () { marker.off("dragstart", onDragStart, this); marker.off("dragend", onDragEnd, this); marker.off("touchmove", onDragStart, this); this._createMiddleMarker(marker1, marker); this._createMiddleMarker(marker, marker2); }; onClick = function () { onDragStart.call(this); onDragEnd.call(this); this._fireEdit(); }; marker.on("click", onClick, this).on("dragstart", onDragStart, this).on("dragend", onDragEnd, this).on("touchmove", onDragStart, this); this._markerGroup.addLayer(marker); }, _updatePrevNext: function (marker1, marker2) { if (marker1) { marker1._next = marker2; } if (marker2) { marker2._prev = marker1; } }, _getMiddleLatLng: function (marker1, marker2) { var map = this._poly._map, p1 = map.project(marker1.getLatLng()), p2 = map.project(marker2.getLatLng()); return map.unproject(p1._add(p2)._divideBy(2)); }, }); L.Polyline.addInitHook(function () { if (this.editing) { return; } if (L.Edit.Poly) { this.editing = new L.Edit.Poly(this, this.options.poly); if (this.options.editable) { this.editing.enable(); } } this.on("add", function () { if (this.editing && this.editing.enabled()) { this.editing.addHooks(); } }); this.on("remove", function () { if (this.editing && this.editing.enabled()) { this.editing.removeHooks(); } }); }); L.Edit = L.Edit || {}; L.Edit.SimpleShape = L.Handler.extend({ options: { moveIcon: new L.DivIcon({ iconSize: new L.Point(8, 8), className: "leaflet-div-icon leaflet-editing-icon leaflet-edit-move" }), resizeIcon: new L.DivIcon({ iconSize: new L.Point(8, 8), className: "leaflet-div-icon leaflet-editing-icon leaflet-edit-resize" }), touchMoveIcon: new L.DivIcon({ iconSize: new L.Point(20, 20), className: "leaflet-div-icon leaflet-editing-icon leaflet-edit-move leaflet-touch-icon" }), touchResizeIcon: new L.DivIcon({ iconSize: new L.Point(20, 20), className: "leaflet-div-icon leaflet-editing-icon leaflet-edit-resize leaflet-touch-icon" }), }, initialize: function (shape, options) { if (L.Browser.touch) { this.options.moveIcon = this.options.touchMoveIcon; this.options.resizeIcon = this.options.touchResizeIcon; } this._shape = shape; L.Util.setOptions(this, options); }, addHooks: function () { var shape = this._shape; if (this._shape._map) { this._map = this._shape._map; shape.setStyle(shape.options.editing); if (shape._map) { this._map = shape._map; if (!this._markerGroup) { this._initMarkers(); } this._map.addLayer(this._markerGroup); } } }, removeHooks: function () { var shape = this._shape; shape.setStyle(shape.options.original); if (shape._map) { this._unbindMarker(this._moveMarker); for (var i = 0, l = this._resizeMarkers.length; i < l; i++) { this._unbindMarker(this._resizeMarkers[i]); } this._resizeMarkers = null; this._map.removeLayer(this._markerGroup); delete this._markerGroup; } this._map = null; }, updateMarkers: function () { this._markerGroup.clearLayers(); this._initMarkers(); }, _initMarkers: function () { if (!this._markerGroup) { this._markerGroup = new L.LayerGroup(); } this._createMoveMarker(); this._createResizeMarker(); }, _createMoveMarker: function () {}, _createResizeMarker: function () {}, _createMarker: function (latlng, icon) { var marker = new L.Marker.Touch(latlng, { draggable: true, icon: icon, zIndexOffset: 10 }); this._bindMarker(marker); this._markerGroup.addLayer(marker); return marker; }, _bindMarker: function (marker) { marker .on("dragstart", this._onMarkerDragStart, this) .on("drag", this._onMarkerDrag, this) .on("dragend", this._onMarkerDragEnd, this) .on("touchstart", this._onTouchStart, this) .on("touchmove", this._onTouchMove, this) .on("MSPointerMove", this._onTouchMove, this) .on("touchend", this._onTouchEnd, this) .on("MSPointerUp", this._onTouchEnd, this); }, _unbindMarker: function (marker) { marker .off("dragstart", this._onMarkerDragStart, this) .off("drag", this._onMarkerDrag, this) .off("dragend", this._onMarkerDragEnd, this) .off("touchstart", this._onTouchStart, this) .off("touchmove", this._onTouchMove, this) .off("MSPointerMove", this._onTouchMove, this) .off("touchend", this._onTouchEnd, this) .off("MSPointerUp", this._onTouchEnd, this); }, _onMarkerDragStart: function (e) { var marker = e.target; marker.setOpacity(0); this._shape.fire("editstart"); }, _fireEdit: function () { this._shape.edited = true; this._shape.fire("edit"); }, _onMarkerDrag: function (e) { var marker = e.target, latlng = marker.getLatLng(); if (marker === this._moveMarker) { this._move(latlng); } else { this._resize(latlng); } this._shape.redraw(); this._shape.fire("editdrag"); }, _onMarkerDragEnd: function (e) { var marker = e.target; marker.setOpacity(1); this._fireEdit(); }, _onTouchStart: function (e) { L.Edit.SimpleShape.prototype._onMarkerDragStart.call(this, e); if (typeof this._getCorners === "function") { var corners = this._getCorners(), marker = e.target, currentCornerIndex = marker._cornerIndex; marker.setOpacity(0); this._oppositeCorner = corners[(currentCornerIndex + 2) % 4]; this._toggleCornerMarkers(0, currentCornerIndex); } this._shape.fire("editstart"); }, _onTouchMove: function (e) { var layerPoint = this._map.mouseEventToLayerPoint(e.originalEvent.touches[0]), latlng = this._map.layerPointToLatLng(layerPoint), marker = e.target; if (marker === this._moveMarker) { this._move(latlng); } else { this._resize(latlng); } this._shape.redraw(); return false; }, _onTouchEnd: function (e) { var marker = e.target; marker.setOpacity(1); this.updateMarkers(); this._fireEdit(); }, _move: function () {}, _resize: function () {}, }); L.Edit = L.Edit || {}; L.Edit.Circle = L.Edit.SimpleShape.extend({ _createMoveMarker: function () { var center = this._shape.getLatLng(); this._moveMarker = this._createMarker(center, this.options.moveIcon); }, _createResizeMarker: function () { var center = this._shape.getLatLng(), resizemarkerPoint = this._getResizeMarkerPoint(center); this._resizeMarkers = []; this._resizeMarkers.push(this._createMarker(resizemarkerPoint, this.options.resizeIcon)); }, _getResizeMarkerPoint: function (latlng) { var delta = this._shape._radius * Math.cos(Math.PI / 4), point = this._map.project(latlng); return this._map.unproject([point.x + delta, point.y - delta]); }, _move: function (latlng) { var resizemarkerPoint = this._getResizeMarkerPoint(latlng); this._resizeMarkers[0].setLatLng(resizemarkerPoint); this._shape.setLatLng(latlng); this._map.fire(L.Draw.Event.EDITMOVE, { layer: this._shape }); }, _resize: function (latlng) { var moveLatLng = this._moveMarker.getLatLng(), radius = moveLatLng.distanceTo(latlng); this._shape.setRadius(radius); this._map.fire(L.Draw.Event.EDITRESIZE, { layer: this._shape }); }, }); L.Circle.addInitHook(function () { if (L.Edit.Circle) { this.editing = new L.Edit.Circle(this); if (this.options.editable) { this.editing.enable(); } } this.on("add", function () { if (this.editing && this.editing.enabled()) { this.editing.addHooks(); } }); this.on("remove", function () { if (this.editing && this.editing.enabled()) { this.editing.removeHooks(); } }); }); L.Edit = L.Edit || {}; L.Edit.Rectangle = L.Edit.SimpleShape.extend({ _createMoveMarker: function () { var bounds = this._shape.getBounds(), center = bounds.getCenter(); this._moveMarker = this._createMarker(center, this.options.moveIcon); }, _createResizeMarker: function () { var corners = this._getCorners(); this._resizeMarkers = []; for (var i = 0, l = corners.length; i < l; i++) { this._resizeMarkers.push(this._createMarker(corners[i], this.options.resizeIcon)); this._resizeMarkers[i]._cornerIndex = i; } }, _onMarkerDragStart: function (e) { L.Edit.SimpleShape.prototype._onMarkerDragStart.call(this, e); var corners = this._getCorners(), marker = e.target, currentCornerIndex = marker._cornerIndex; this._oppositeCorner = corners[(currentCornerIndex + 2) % 4]; this._toggleCornerMarkers(0, currentCornerIndex); }, _onMarkerDragEnd: function (e) { var marker = e.target, bounds, center; if (marker === this._moveMarker) { bounds = this._shape.getBounds(); center = bounds.getCenter(); marker.setLatLng(center); } this._toggleCornerMarkers(1); this._repositionCornerMarkers(); L.Edit.SimpleShape.prototype._onMarkerDragEnd.call(this, e); }, _move: function (newCenter) { var latlngs = this._shape._defaultShape ? this._shape._defaultShape() : this._shape.getLatLngs(), bounds = this._shape.getBounds(), center = bounds.getCenter(), offset, newLatLngs = []; for (var i = 0, l = latlngs.length; i < l; i++) { offset = [latlngs[i].lat - center.lat, latlngs[i].lng - center.lng]; newLatLngs.push([newCenter.lat + offset[0], newCenter.lng + offset[1]]); } this._shape.setLatLngs(newLatLngs); this._repositionCornerMarkers(); this._map.fire(L.Draw.Event.EDITMOVE, { layer: this._shape }); }, _resize: function (latlng) { var bounds; this._shape.setBounds(L.latLngBounds(latlng, this._oppositeCorner)); bounds = this._shape.getBounds(); this._moveMarker.setLatLng(bounds.getCenter()); this._map.fire(L.Draw.Event.EDITRESIZE, { layer: this._shape }); }, _getCorners: function () { var bounds = this._shape.getBounds(), nw = bounds.getNorthWest(), ne = bounds.getNorthEast(), se = bounds.getSouthEast(), sw = bounds.getSouthWest(); return [nw, ne, se, sw]; }, _toggleCornerMarkers: function (opacity) { for (var i = 0, l = this._resizeMarkers.length; i < l; i++) { this._resizeMarkers[i].setOpacity(opacity); } }, _repositionCornerMarkers: function () { var corners = this._getCorners(); for (var i = 0, l = this._resizeMarkers.length; i < l; i++) { this._resizeMarkers[i].setLatLng(corners[i]); } }, }); L.Rectangle.addInitHook(function () { if (L.Edit.Rectangle) { this.editing = new L.Edit.Rectangle(this); if (this.options.editable) { this.editing.enable(); } } }); L.Edit = L.Edit || {}; L.Edit.Marker = L.Handler.extend({ initialize: function (marker, options) { this._marker = marker; L.setOptions(this, options); }, addHooks: function () { var marker = this._marker; marker.dragging.enable(); marker.on("dragend", this._onDragEnd, marker); this._toggleMarkerHighlight(); }, removeHooks: function () { var marker = this._marker; marker.dragging.disable(); marker.off("dragend", this._onDragEnd, marker); this._toggleMarkerHighlight(); }, _onDragEnd: function (e) { var layer = e.target; layer.edited = true; this._map.fire(L.Draw.Event.EDITMOVE, { layer: layer }); }, _toggleMarkerHighlight: function () { var icon = this._marker._icon; if (!icon) { return; } icon.style.display = "none"; if (L.DomUtil.hasClass(icon, "leaflet-edit-marker-selected")) { L.DomUtil.removeClass(icon, "leaflet-edit-marker-selected"); this._offsetMarker(icon, -4); } else { L.DomUtil.addClass(icon, "leaflet-edit-marker-selected"); this._offsetMarker(icon, 4); } icon.style.display = ""; }, _offsetMarker: function (icon, offset) { var iconMarginTop = parseInt(icon.style.marginTop, 10) - offset, iconMarginLeft = parseInt(icon.style.marginLeft, 10) - offset; icon.style.marginTop = iconMarginTop + "px"; icon.style.marginLeft = iconMarginLeft + "px"; }, }); L.Marker.addInitHook(function () { if (L.Edit.Marker) { this.editing = new L.Edit.Marker(this); if (this.options.editable) { this.editing.enable(); } } });