You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
426 B

  1. import Vue from 'vue'
  2. import * as L from 'leaflet'
  3. import Vue2LeafletMarkerCluster from 'vue2-leaflet-markercluster'
  4. import 'leaflet/dist/leaflet.css'
  5. import 'leaflet.markercluster/dist/MarkerCluster.css'
  6. import 'leaflet.markercluster/dist/MarkerCluster.Default.css'
  7. Vue.component('v-marker-cluster', Vue2LeafletMarkerCluster)
  8. const LeafletPlugin = {
  9. install (Vue) {
  10. Vue.prototype.$L = L
  11. }
  12. }
  13. Vue.use(LeafletPlugin)