We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ab6231 commit 11c14f1Copy full SHA for 11c14f1
src/components/map/OlGeoLocation.vue
@@ -18,6 +18,11 @@ import type Polygon from "ol/geom/Polygon";
18
import usePropsAsObjectProperties from "@/composables/usePropsAsObjectProperties";
19
import { useOpenLayersEvents } from "@/composables/useOpenLayersEvents";
20
21
+// prevent warnings caused by event pass-through via useOpenLayersEvents composable
22
+defineOptions({
23
+ inheritAttrs: false,
24
+});
25
+
26
const props = withDefaults(defineProps<Options>(), {
27
projection: "EPSG:3857",
28
tracking: true,
0 commit comments