Loading src/components/LGridLayer.vue +1 −1 Original line number Diff line number Diff line Loading @@ -22,7 +22,7 @@ export default { const addLayer = inject("addLayer"); const { options, methods } = gridLayerSetup(props, leafletRef); const { options, methods } = gridLayerSetup(props, leafletRef, context); onMounted(async () => { const { GridLayer, DomEvent, DomUtil } = await import( Loading src/components/LLayerGroup.vue +1 −1 Original line number Diff line number Diff line Loading @@ -12,7 +12,7 @@ export default { const addLayer = inject("addLayer"); const { methods } = layerGroupSetup(props, leafletRef); const { methods } = layerGroupSetup(props, leafletRef, context); onMounted(async () => { const { layerGroup, DomEvent } = await import( Loading src/functions/gridLayer.js +3 −2 Original line number Diff line number Diff line Loading @@ -33,10 +33,11 @@ export const props = { }, }; export const setup = (props, leafletRef) => { export const setup = (props, leafletRef, context) => { const { options: layerOptions, methods: layerMethods } = layerSetup( props, leafletRef leafletRef, context ); const options = { ...layerOptions, Loading src/functions/layerGroup.js +3 −2 Original line number Diff line number Diff line Loading @@ -5,10 +5,11 @@ export const props = { ...layerProps, }; export const setup = (props, leafletRef) => { export const setup = (props, leafletRef, context) => { const { options: layerOptions, methods: layerMethods } = layerSetup( props, leafletRef leafletRef, context ); const options = { Loading Loading
src/components/LGridLayer.vue +1 −1 Original line number Diff line number Diff line Loading @@ -22,7 +22,7 @@ export default { const addLayer = inject("addLayer"); const { options, methods } = gridLayerSetup(props, leafletRef); const { options, methods } = gridLayerSetup(props, leafletRef, context); onMounted(async () => { const { GridLayer, DomEvent, DomUtil } = await import( Loading
src/components/LLayerGroup.vue +1 −1 Original line number Diff line number Diff line Loading @@ -12,7 +12,7 @@ export default { const addLayer = inject("addLayer"); const { methods } = layerGroupSetup(props, leafletRef); const { methods } = layerGroupSetup(props, leafletRef, context); onMounted(async () => { const { layerGroup, DomEvent } = await import( Loading
src/functions/gridLayer.js +3 −2 Original line number Diff line number Diff line Loading @@ -33,10 +33,11 @@ export const props = { }, }; export const setup = (props, leafletRef) => { export const setup = (props, leafletRef, context) => { const { options: layerOptions, methods: layerMethods } = layerSetup( props, leafletRef leafletRef, context ); const options = { ...layerOptions, Loading
src/functions/layerGroup.js +3 −2 Original line number Diff line number Diff line Loading @@ -5,10 +5,11 @@ export const props = { ...layerProps, }; export const setup = (props, leafletRef) => { export const setup = (props, leafletRef, context) => { const { options: layerOptions, methods: layerMethods } = layerSetup( props, leafletRef leafletRef, context ); const options = { Loading