2023-04-06 16:56:41 +00:00
|
|
|
<template>
|
2023-04-12 07:26:45 +00:00
|
|
|
<div ref="drawControl" class="gba-control-draw btn-group-vertical map-control">
|
2023-04-06 16:56:41 +00:00
|
|
|
<!-- <button type="button" class="button is-light is-small" (click)="locateUser()" [ngClass]="isToggled ? 'is-primary': 'is-active'">
|
|
|
|
<fa-icon [icon]="faSearchLocation"></fa-icon>
|
|
|
|
</button> -->
|
2023-04-12 07:26:45 +00:00
|
|
|
<!-- -->
|
2023-04-06 16:56:41 +00:00
|
|
|
<button
|
|
|
|
ref="inputDraw"
|
|
|
|
class="inline-flex cursor-pointer justify-center items-center whitespace-nowrap focus:outline-none transition-colors duration-150 border rounded ring-blue-700 text-black border-teal-50 hover:bg-gray-200 text-sm p-1"
|
|
|
|
type="button"
|
2023-05-02 16:10:32 +00:00
|
|
|
:class="[_enabled ? 'cursor-not-allowed bg-gray-200' : 'bg-teal-50 is-active']"
|
2023-04-06 16:56:41 +00:00
|
|
|
@click.prevent="draw"
|
|
|
|
>
|
|
|
|
<BaseIcon v-if="mdiDrawPen" :path="mdiDrawPen" />
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { Component, Vue, Prop } from 'vue-facing-decorator';
|
|
|
|
|
|
|
|
import BaseIcon from '@/Components/BaseIcon.vue';
|
|
|
|
import { mdiDrawPen } from '@mdi/js';
|
2023-04-12 07:26:45 +00:00
|
|
|
import { MapService } from '@/Stores/map.service';
|
2023-05-02 16:10:32 +00:00
|
|
|
import { Map } from 'leaflet/src/map/index';
|
2023-04-12 07:26:45 +00:00
|
|
|
// import { LayerGroup } from 'leaflet/src/layer/LayerGroup';
|
2023-05-02 16:10:32 +00:00
|
|
|
// import { LatLngBounds, Rectangle } from 'leaflet';
|
2023-05-03 08:02:48 +00:00
|
|
|
import { on, off , preventDefault } from 'leaflet/src/dom/DomEvent';
|
2023-05-02 16:10:32 +00:00
|
|
|
import { Rectangle } from 'leaflet/src/layer/vector/Rectangle';
|
|
|
|
import { LatLngBounds } from 'leaflet/src/geo/LatLngBounds';
|
2023-04-06 16:56:41 +00:00
|
|
|
|
|
|
|
@Component({
|
2023-04-12 07:26:45 +00:00
|
|
|
name: 'draw-control',
|
2023-04-06 16:56:41 +00:00
|
|
|
components: {
|
|
|
|
BaseIcon,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
export default class DrawControlComponent extends Vue {
|
2023-05-02 16:10:32 +00:00
|
|
|
TYPE = 'rectangle';
|
|
|
|
|
2023-04-12 07:26:45 +00:00
|
|
|
/**
|
|
|
|
* class properties.
|
|
|
|
*/
|
2023-04-06 16:56:41 +00:00
|
|
|
mdiDrawPen = mdiDrawPen;
|
2023-04-12 07:26:45 +00:00
|
|
|
featuresLayer;
|
2023-05-02 16:10:32 +00:00
|
|
|
// options = {
|
|
|
|
// zIndex: 1000,
|
|
|
|
// // markerClass: Marker, // CylinderGeometry,
|
|
|
|
// drawingCSSClass: 'gba-editable-drawing',
|
|
|
|
// drawingCursor: 'crosshair',
|
|
|
|
// };
|
|
|
|
|
2023-04-12 07:26:45 +00:00
|
|
|
options = {
|
2023-05-02 16:10:32 +00:00
|
|
|
shapeOptions: {
|
|
|
|
stroke: true,
|
|
|
|
color: '#22C55E',
|
|
|
|
weight: 4,
|
|
|
|
opacity: 0.5,
|
|
|
|
fill: true,
|
|
|
|
fillColor: '#22C55E', //same as color by default
|
|
|
|
fillOpacity: 0.2,
|
|
|
|
clickable: true,
|
|
|
|
},
|
|
|
|
repeatMode: true,
|
|
|
|
showArea: true, //Whether to show the area in the tooltip
|
|
|
|
metric: true, // Whether to use the metric measurement system or imperial
|
2023-04-12 07:26:45 +00:00
|
|
|
};
|
2023-04-06 16:56:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Connect map id.
|
|
|
|
*/
|
|
|
|
@Prop() public mapId: string;
|
2023-04-12 07:26:45 +00:00
|
|
|
// @Prop() public map: Map;
|
|
|
|
@Prop public southWest;
|
|
|
|
@Prop public northEast;
|
|
|
|
|
2023-04-06 16:56:41 +00:00
|
|
|
public isToggled = false;
|
2023-04-12 07:26:45 +00:00
|
|
|
mapService = MapService();
|
2023-05-02 16:10:32 +00:00
|
|
|
// try:
|
|
|
|
public _enabled;
|
|
|
|
private _map: Map;
|
|
|
|
private _isDrawing: boolean = false;
|
|
|
|
private _startLatLng;
|
|
|
|
private _mapDraggable;
|
|
|
|
private _shape: Rectangle | undefined;
|
|
|
|
|
|
|
|
// @method enable(): this
|
|
|
|
// Enables the handler
|
|
|
|
enable() {
|
|
|
|
if (this._enabled) {
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._enabled = true;
|
|
|
|
this.addHooks();
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// @method disable(): this
|
|
|
|
// Disables the handler
|
|
|
|
disable() {
|
|
|
|
if (!this._enabled) {
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._enabled = false;
|
|
|
|
this.removeHooks();
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// @method enabled(): Boolean
|
|
|
|
// Returns `true` if the handler is enabled
|
|
|
|
enabled() {
|
|
|
|
return !!this._enabled;
|
|
|
|
}
|
2023-04-06 16:56:41 +00:00
|
|
|
|
|
|
|
// @Ref('inputDraw') private _inputDraw: HTMLElement;
|
|
|
|
|
2023-05-02 16:10:32 +00:00
|
|
|
// SimpleShape
|
|
|
|
// @method addHooks(): void
|
|
|
|
// Add listener hooks to this handler.
|
|
|
|
private addHooks() {
|
|
|
|
// L.Draw.Feature.prototype.addHooks.call(this);
|
|
|
|
this._map = this.mapService.getMap(this.mapId);
|
|
|
|
if (this._map) {
|
|
|
|
this._mapDraggable = this._map.dragging.enabled();
|
|
|
|
if (this._mapDraggable) {
|
|
|
|
this._map.dragging.disable();
|
|
|
|
}
|
|
|
|
//TODO refactor: move cursor to styles
|
|
|
|
// 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);
|
|
|
|
// we should prevent default, otherwise default behavior (scrolling) will fire,
|
|
|
|
// and that will cause document.touchend to fire and will stop the drawing
|
|
|
|
// (circle, rectangle) in touch mode.
|
|
|
|
// (update): we have to send passive now to prevent scroll, because by default it is {passive: true} now, which means,
|
|
|
|
// handler can't event.preventDefault
|
|
|
|
// check the news https://developers.google.com/web/updates/2016/06/passive-event-listeners
|
2023-05-03 08:02:48 +00:00
|
|
|
document.addEventListener('touchstart', preventDefault, { passive: false });
|
2023-05-02 16:10:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SimpleShape
|
|
|
|
// @method removeHooks(): void
|
|
|
|
// Remove listener hooks from this handler.
|
|
|
|
removeHooks() {
|
|
|
|
// L.Draw.Feature.prototype.removeHooks.call(this);
|
|
|
|
if (this._map) {
|
|
|
|
if (this._mapDraggable) {
|
|
|
|
this._map.dragging.enable();
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO refactor: move cursor to styles
|
|
|
|
// 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);
|
|
|
|
|
2023-05-03 08:02:48 +00:00
|
|
|
off(document, 'mouseup', this._onMouseUp, this);
|
|
|
|
off(document, 'touchend', this._onMouseUp, this);
|
2023-05-02 16:10:32 +00:00
|
|
|
|
2023-05-03 08:02:48 +00:00
|
|
|
document.removeEventListener('touchstart', preventDefault);
|
2023-05-02 16:10:32 +00:00
|
|
|
|
|
|
|
// If the box element doesn't exist they must not have moved the mouse, so don't need to destroy/return
|
|
|
|
// if (this._shape) {
|
|
|
|
// this._map.removeLayer(this._shape);
|
|
|
|
// // delete this._shape;
|
|
|
|
// this._shape = undefined;
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
this._isDrawing = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private _onMouseDown(e) {
|
|
|
|
this._isDrawing = true;
|
|
|
|
this._startLatLng = e.latlng;
|
|
|
|
|
2023-05-03 08:02:48 +00:00
|
|
|
// DomEvent.on(document, 'mouseup', this._onMouseUp, this)
|
|
|
|
// .on(document, 'touchend', this._onMouseUp, this)
|
|
|
|
// .preventDefault(e.originalEvent);
|
|
|
|
on(document, 'mouseup', this._onMouseUp, this);
|
|
|
|
on(document, 'touchend', this._onMouseUp, this);
|
|
|
|
preventDefault(e.originalEvent);
|
2023-05-02 16:10:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private _onMouseMove(e) {
|
|
|
|
var latlng = e.latlng;
|
|
|
|
|
|
|
|
// this._tooltip.updatePosition(latlng);
|
|
|
|
if (this._isDrawing) {
|
|
|
|
// this._tooltip.updateContent(this._getTooltipText());
|
|
|
|
this._drawShape(latlng);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private _onMouseUp() {
|
|
|
|
if (this._shape) {
|
|
|
|
this._fireCreatedEvent(this._shape);
|
|
|
|
}
|
|
|
|
|
|
|
|
// this.removeHooks();
|
|
|
|
this.disable();
|
|
|
|
if (this.options.repeatMode) {
|
|
|
|
this.enable();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private _fireCreatedEvent(shape) {
|
|
|
|
var rectangle = new Rectangle(shape.getBounds(), this.options.shapeOptions);
|
|
|
|
// L.Draw.SimpleShape.prototype._fireCreatedEvent.call(this, rectangle);
|
|
|
|
this._map.fire('Daw.Event.CREATED', { layer: rectangle, type: this.TYPE });
|
|
|
|
}
|
|
|
|
|
|
|
|
// from Draw Rectangle
|
|
|
|
_drawShape(latlng) {
|
|
|
|
if (!this._shape) {
|
|
|
|
const bounds = new LatLngBounds(this._startLatLng, latlng);
|
|
|
|
this._shape = new Rectangle(bounds, this.options.shapeOptions);
|
|
|
|
// this._map.addLayer(this._shape);
|
|
|
|
this._shape.addTo(this._map);
|
|
|
|
} else {
|
|
|
|
this._shape.setBounds(new LatLngBounds(this._startLatLng, latlng));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-06 16:56:41 +00:00
|
|
|
public draw() {
|
2023-04-12 07:26:45 +00:00
|
|
|
// let map: Map = this.mapService.getMap(this.mapId);
|
|
|
|
// const bounds: LatLngBoundsExpression = toLatLngBounds(this.southWest, this.northEast);
|
|
|
|
// map.fitBounds(bounds);
|
|
|
|
|
2023-05-02 16:10:32 +00:00
|
|
|
if (this._enabled == true) {
|
2023-04-12 07:26:45 +00:00
|
|
|
this.disable();
|
|
|
|
} else {
|
|
|
|
this.enable();
|
|
|
|
}
|
2023-05-02 16:10:32 +00:00
|
|
|
// this.isToggled = !this.isToggled;
|
2023-04-06 16:56:41 +00:00
|
|
|
}
|
2023-04-12 07:26:45 +00:00
|
|
|
|
2023-05-02 16:10:32 +00:00
|
|
|
// private enable() {
|
|
|
|
// //if (this.map.mapTool) this.map.mapTool.on('editable:drawing:start', this.disable.bind(this));
|
|
|
|
// // dom.addClass(this.map.container, 'measure-enabled');
|
|
|
|
// //this.fireAndForward('showmeasure');
|
|
|
|
// this._startMarker(this.southWest, this.options);
|
|
|
|
// }
|
2023-04-12 07:26:45 +00:00
|
|
|
|
2023-05-02 16:10:32 +00:00
|
|
|
// private disable() {
|
|
|
|
// //if (this.map.mapTool) this.map.mapTool.off('editable:drawing:start', this.disable.bind(this));
|
|
|
|
// // dom.removeClass(this.map.container, 'measure-enabled');
|
|
|
|
// // this.featuresLayer.clearLayers();
|
|
|
|
// // //this.fireAndForward('hidemeasure');
|
|
|
|
// // if (this._drawingEditor) {
|
|
|
|
// // this._drawingEditor.cancelDrawing();
|
|
|
|
// // }
|
|
|
|
// }
|
2023-04-12 07:26:45 +00:00
|
|
|
|
|
|
|
// created(): void {
|
|
|
|
// this.featuresLayer = this._createFeaturesLayer();
|
|
|
|
// }
|
|
|
|
|
|
|
|
// private _createFeaturesLayer() {
|
|
|
|
// let map: Map = (this.map = this.mapService.getMap(this.mapId));
|
|
|
|
// let layerGroup: LayerGroup = new LayerGroup();
|
|
|
|
// map.addLayer(layerGroup);
|
|
|
|
// return layerGroup;
|
|
|
|
// }
|
|
|
|
|
2023-05-02 16:10:32 +00:00
|
|
|
// private _startMarker(latlng, options) {
|
|
|
|
// let map = this.mapService.getMap(this.mapId);
|
|
|
|
// latlng = map.getCenter().clone();
|
|
|
|
// let markerLayer: Marker = this._createMarker(latlng, options); //.addTo(this.map);
|
|
|
|
// // map.addLayer(markerLayer);
|
|
|
|
// //this.map.addLayer(marker);
|
|
|
|
// //marker.enableEdit(this.map).startDrawing(); //editor.startDrawing() -> registerForDrawing
|
|
|
|
// // let baseEditor = markerLayer.en.enableEdit(this.map);
|
|
|
|
// // baseEditor.startDrawing();
|
|
|
|
// return markerLayer;
|
|
|
|
// }
|
2023-04-12 07:26:45 +00:00
|
|
|
|
2023-05-02 16:10:32 +00:00
|
|
|
// private _createMarker(latlng, options): Marker {
|
|
|
|
// // return this._createLayer((options && options.markerClass) || this.options.markerClass, latlng, options);
|
|
|
|
// return new Marker(latlng, options);
|
|
|
|
// }
|
2023-04-12 07:26:45 +00:00
|
|
|
|
|
|
|
// private _createLayer(klass, latlngs, options) {
|
|
|
|
// options = util.extend({ editOptions: { mapTool: this } }, options);
|
|
|
|
// let layer = new klass(latlngs, options);
|
|
|
|
// //this.fireAndForward('editable:created', { layer: layer });
|
|
|
|
// return layer;
|
|
|
|
// }
|
2023-04-06 16:56:41 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="css">
|
|
|
|
.gba-control-draw {
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 4px;
|
|
|
|
position: absolute;
|
|
|
|
left: 10px;
|
|
|
|
top: 100px;
|
2023-05-02 16:10:32 +00:00
|
|
|
z-index: 40;
|
2023-04-06 16:56:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-group-vertical button {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
margin-left: 0;
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
|
|
|
</style>
|