mirror of
https://github.com/FoggedLens/deflock.git
synced 2026-07-07 21:08:08 +02:00
loading ALPR screen
This commit is contained in:
@@ -1,18 +1,14 @@
|
||||
<template>
|
||||
<l-circle-marker
|
||||
@click="$emit('click', props)"
|
||||
:lat-lng="[props.lat, props.lon]"
|
||||
:radius="26"
|
||||
:center="[props.lat, props.lon]"
|
||||
color="#3f54f3"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { LCircleMarker } from '@vue-leaflet/vue-leaflet';
|
||||
import { defineProps, defineEmits } from 'vue';
|
||||
|
||||
defineEmits(['click']);
|
||||
import { defineProps } from 'vue';
|
||||
|
||||
const props = defineProps({
|
||||
lat: Number,
|
||||
|
||||
Reference in New Issue
Block a user