Don't show default locator value

This commit is contained in:
Eli Ribble 2026-04-09 22:29:26 +00:00
parent d3662b8240
commit 79a56c2d20
No known key found for this signature in database

View file

@ -82,6 +82,12 @@ const markers = computed((): Marker[] => {
if (!props.modelValue.location) {
return [];
}
if (
props.modelValue.location.latitude == 0.0 ||
props.modelValue.location.longitude == 0.0
) {
return [];
}
const marker = {
color: "#FF0000",
draggable: true,