fix markercluster issues
All checks were successful
Build Docker containers / Build (push) Successful in 40s

This commit is contained in:
2025-04-16 01:49:20 -04:00
parent e694ffa66a
commit 18df989fc6
2 changed files with 7 additions and 5 deletions

View File

@ -1,5 +1,6 @@
import moment from 'moment';
import L from 'leaflet/dist/leaflet.js';
import 'leaflet/dist/leaflet.js';
const L = window.L;
import 'leaflet.markercluster/dist/leaflet.markercluster.js';
import 'leaflet-groupedlayercontrol/dist/leaflet.groupedlayercontrol.min.js';
import {

View File

@ -11,10 +11,11 @@ import Announcement from '../components/Announcement.vue';
import axios from 'axios';
import moment from 'moment';
import L from 'leaflet/dist/leaflet.js';
import 'leaflet-geometryutil/src/leaflet.geometryutil.js';
import 'leaflet-arrowheads/src/leaflet-arrowheads.js';
import 'leaflet.markercluster/dist/leaflet.markercluster.js';
import 'leaflet/dist/leaflet';
const L = window.L;
import 'leaflet-geometryutil';
import 'leaflet-arrowheads';
import 'leaflet.markercluster';
import 'leaflet-groupedlayercontrol/dist/leaflet.groupedlayercontrol.min.js';
import { onMounted, useTemplateRef, ref, watch, markRaw } from 'vue';
import { state } from '../store.js';