forked from potsda.mn/mobilizon
Fix clicking on map crashing
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
18ceeb450a
commit
ef26f1a684
|
@ -142,8 +142,10 @@ export default class Map extends Vue {
|
||||||
}
|
}
|
||||||
|
|
||||||
updateDraggableMarkerPosition(e: LatLng): void {
|
updateDraggableMarkerPosition(e: LatLng): void {
|
||||||
|
if (this.updateDraggableMarkerCallback) {
|
||||||
this.updateDraggableMarkerCallback(e, this.zoom);
|
this.updateDraggableMarkerCallback(e, this.zoom);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
updateZoom(zoom: number): void {
|
updateZoom(zoom: number): void {
|
||||||
this.zoom = zoom;
|
this.zoom = zoom;
|
||||||
|
|
Loading…
Reference in a new issue