diff --git a/ts/rmo/components/AddressAndMapLocator.vue b/ts/rmo/components/AddressAndMapLocator.vue index c756248d..a59f77d7 100644 --- a/ts/rmo/components/AddressAndMapLocator.vue +++ b/ts/rmo/components/AddressAndMapLocator.vue @@ -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,