Skip to content

Commit

Permalink
minor fixes to get it to build
Browse files Browse the repository at this point in the history
  • Loading branch information
frillweeman committed Dec 28, 2024
1 parent 7230477 commit c5a84a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 19 deletions.
17 changes: 0 additions & 17 deletions webapp/src/components/DFMarkerCluster.vue

This file was deleted.

4 changes: 2 additions & 2 deletions webapp/src/components/LeafletMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<script setup lang="ts">
import { onBeforeUnmount, onMounted, h, createApp, watch, ref, type PropType, type Ref } from 'vue';
import L, { type LatLngExpression, type FeatureGroup, type MarkerClusterGroup, type Marker, type CircleMarker } from 'leaflet';
import L, { type LatLngTuple, type FeatureGroup, type MarkerClusterGroup, type Marker, type CircleMarker } from 'leaflet';
import type { ALPR } from '@/types';
import DFMapPopup from './DFMapPopup.vue';
import { createVuetify } from 'vuetify'
Expand All @@ -29,7 +29,7 @@ const isInternalUpdate = ref(false);
const props = defineProps({
center: {
type: Object,
type: Object as PropType<LatLngTuple>,
required: true,
},
zoom: {
Expand Down

0 comments on commit c5a84a6

Please sign in to comment.