Loading src/components/LCircle.vue +11 −2 Original line number Diff line number Diff line <script> import { onMounted, ref, inject, nextTick } from "vue"; import { remapEvents, propsBinder } from "../utils.js"; import { props, setup as circleSetup } from "../functions/circle"; import { props as circleProps, setup as circleSetup, } from "../functions/circle"; import { render } from "../functions/layer"; /** Loading @@ -9,7 +12,13 @@ import { render } from "../functions/layer"; */ export default { name: "LCircle", props, props: { ...circleProps, options: { type: Object, default: () => ({}), }, }, setup(props, context) { const leafletRef = ref({}); const ready = ref(false); Loading src/components/LCircleMarker.vue +11 −2 Original line number Diff line number Diff line <script> import { onMounted, ref, inject, nextTick } from "vue"; import { remapEvents, propsBinder } from "../utils.js"; import { props, setup as circleMarkerSetup } from "../functions/circleMarker"; import { props as circleMarkerProps, setup as circleMarkerSetup, } from "../functions/circleMarker"; import { render } from "../functions/layer"; /** Loading @@ -9,7 +12,13 @@ import { render } from "../functions/layer"; */ export default { name: "LCircleMarker", props, props: { ...circleMarkerProps, options: { type: Object, default: () => ({}), }, }, setup(props, context) { const leafletRef = ref({}); const ready = ref(false); Loading src/components/LControl.vue +10 −2 Original line number Diff line number Diff line <script> import { onMounted, ref, inject, nextTick } from "vue"; import { props, setup as controlSetup, render } from "../functions/control"; import { props as controlProps, setup as controlSetup, render, } from "../functions/control"; import { propsBinder } from "../utils.js"; export default { name: "LControl", props: { ...props, ...controlProps, disableClickPropagation: { type: Boolean, custom: true, Loading @@ -17,6 +21,10 @@ export default { custom: true, default: false, }, options: { type: Object, default: () => ({}), }, }, setup(props, context) { const leafletRef = ref({}); Loading src/components/LControlAttribution.vue +8 −2 Original line number Diff line number Diff line <script> import { onMounted, ref, inject, nextTick } from "vue"; import { props, props as attributionControlProps, setup as attributionControlSetup, } from "../functions/controlAttribution"; import { propsBinder } from "../utils.js"; export default { name: "LControlAttribution", props, props: { ...attributionControlProps, options: { type: Object, default: () => ({}), }, }, setup(props, context) { const leafletRef = ref({}); Loading src/components/LControlLayers.vue +11 −2 Original line number Diff line number Diff line <script> import { onMounted, ref, inject, nextTick } from "vue"; import { props, setup as layerControlSetup } from "../functions/controlLayers"; import { props as layerControlProps, setup as layerControlSetup, } from "../functions/controlLayers"; import { propsBinder } from "../utils.js"; export default { name: "LControlLayers", props, props: { ...layerControlProps, options: { type: Object, default: () => ({}), }, }, setup(props, context) { const leafletRef = ref({}); Loading Loading
src/components/LCircle.vue +11 −2 Original line number Diff line number Diff line <script> import { onMounted, ref, inject, nextTick } from "vue"; import { remapEvents, propsBinder } from "../utils.js"; import { props, setup as circleSetup } from "../functions/circle"; import { props as circleProps, setup as circleSetup, } from "../functions/circle"; import { render } from "../functions/layer"; /** Loading @@ -9,7 +12,13 @@ import { render } from "../functions/layer"; */ export default { name: "LCircle", props, props: { ...circleProps, options: { type: Object, default: () => ({}), }, }, setup(props, context) { const leafletRef = ref({}); const ready = ref(false); Loading
src/components/LCircleMarker.vue +11 −2 Original line number Diff line number Diff line <script> import { onMounted, ref, inject, nextTick } from "vue"; import { remapEvents, propsBinder } from "../utils.js"; import { props, setup as circleMarkerSetup } from "../functions/circleMarker"; import { props as circleMarkerProps, setup as circleMarkerSetup, } from "../functions/circleMarker"; import { render } from "../functions/layer"; /** Loading @@ -9,7 +12,13 @@ import { render } from "../functions/layer"; */ export default { name: "LCircleMarker", props, props: { ...circleMarkerProps, options: { type: Object, default: () => ({}), }, }, setup(props, context) { const leafletRef = ref({}); const ready = ref(false); Loading
src/components/LControl.vue +10 −2 Original line number Diff line number Diff line <script> import { onMounted, ref, inject, nextTick } from "vue"; import { props, setup as controlSetup, render } from "../functions/control"; import { props as controlProps, setup as controlSetup, render, } from "../functions/control"; import { propsBinder } from "../utils.js"; export default { name: "LControl", props: { ...props, ...controlProps, disableClickPropagation: { type: Boolean, custom: true, Loading @@ -17,6 +21,10 @@ export default { custom: true, default: false, }, options: { type: Object, default: () => ({}), }, }, setup(props, context) { const leafletRef = ref({}); Loading
src/components/LControlAttribution.vue +8 −2 Original line number Diff line number Diff line <script> import { onMounted, ref, inject, nextTick } from "vue"; import { props, props as attributionControlProps, setup as attributionControlSetup, } from "../functions/controlAttribution"; import { propsBinder } from "../utils.js"; export default { name: "LControlAttribution", props, props: { ...attributionControlProps, options: { type: Object, default: () => ({}), }, }, setup(props, context) { const leafletRef = ref({}); Loading
src/components/LControlLayers.vue +11 −2 Original line number Diff line number Diff line <script> import { onMounted, ref, inject, nextTick } from "vue"; import { props, setup as layerControlSetup } from "../functions/controlLayers"; import { props as layerControlProps, setup as layerControlSetup, } from "../functions/controlLayers"; import { propsBinder } from "../utils.js"; export default { name: "LControlLayers", props, props: { ...layerControlProps, options: { type: Object, default: () => ({}), }, }, setup(props, context) { const leafletRef = ref({}); Loading