mirror of
https://bitbucket.org/s_l_teichmann/mtsatellite
synced 2025-04-03 19:00:22 +02:00
13 lines
513 B
JavaScript
13 lines
513 B
JavaScript
import Vue from 'vue';
|
|
import { LMap, LTileLayer, LMarker, LPopup } from 'vue2-leaflet';
|
|
import Vue2LeafletMarkerCluster from 'vue2-leaflet-markercluster'
|
|
import 'leaflet/dist/leaflet.css';
|
|
import "leaflet.markercluster/dist/MarkerCluster.css";
|
|
import "leaflet.markercluster/dist/MarkerCluster.Default.css";
|
|
|
|
Vue.component('l-map', LMap);
|
|
Vue.component('l-tile-layer', LTileLayer);
|
|
Vue.component('l-marker', LMarker);
|
|
Vue.component('l-popup', LPopup);
|
|
Vue.component('l-marker-cluster', Vue2LeafletMarkerCluster);
|