@eodash/eodash 5.0.0-alpha.2.11 → 5.0.0-alpha.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core/client/utils/createLayers.js +2 -1
- package/dist/client/{DashboardLayout-D5c2wAGC.js → DashboardLayout-v8_zE0jH.js} +2 -2
- package/dist/client/{DynamicWebComponent-CBuMCUIj.js → DynamicWebComponent-DSY-5Ke4.js} +1 -1
- package/dist/client/{EodashDatePicker-D0qdMMTE.js → EodashDatePicker-C6VRIC7r.js} +4 -4
- package/dist/client/{EodashItemFilter-CTRnGRRS.js → EodashItemFilter-BBXcouVm.js} +1 -1
- package/dist/client/{EodashLayerControl-Bpm0BwcW.js → EodashLayerControl-BtfpgLGi.js} +777 -776
- package/dist/client/{EodashMap-DaMtQefq.js → EodashMap-DY7I6iY4.js} +7 -6
- package/dist/client/{EodashMapBtns-B5z8h8mr.js → EodashMapBtns-k00mMvVA.js} +2 -2
- package/dist/client/{ExportState-Bp3n6gba.js → ExportState-Cf40G0wJ.js} +6 -6
- package/dist/client/{Footer-BROOTKhV.js → Footer-DrCAj7E9.js} +1 -1
- package/dist/client/{Header-C_fKVTsg.js → Header-BZT87lHO.js} +4 -4
- package/dist/client/{IframeWrapper-32Q3DBYr.js → IframeWrapper-DTynglc_.js} +1 -1
- package/dist/client/{MobileLayout-TVGrYpNT.js → MobileLayout-BymTNZp0.js} +6 -6
- package/dist/client/{PopUp-BJzmeeKG.js → PopUp-CwXUqqZg.js} +3 -3
- package/dist/client/{VImg-BT4Vb0UT.js → VImg-B-YTQawu.js} +2 -2
- package/dist/client/{VMain-BDVUXNEk.js → VMain-D7s76eFm.js} +2 -2
- package/dist/client/{VOverlay-Ck_4Lxcb.js → VOverlay-DdGIY0gS.js} +3 -3
- package/dist/client/{WidgetsContainer-DjjX_n1U.js → WidgetsContainer-CFR37y2l.js} +1 -1
- package/dist/client/{asWebComponent-wn9bbgx9.js → asWebComponent-C2Gm8JDg.js} +6 -6
- package/dist/client/{decoder-Cth6J7EK-CLlwAswr.js → decoder-Cth6J7EK-DdAwx7Hm.js} +1 -1
- package/dist/client/eo-dash.js +1 -1
- package/dist/client/{forwardRefs--PLRH8zp.js → forwardRefs-BFBakSKN.js} +1 -1
- package/dist/client/{helpers-CoqJPYdE.js → helpers-VeeVIAhm.js} +1 -1
- package/dist/client/{index-Dt0NRXIq.js → index-DAqRmdAt.js} +1 -1
- package/dist/client/{lerc-BgbQqdFI-CCpDWUne.js → lerc-BgbQqdFI-CNkQ6JUx.js} +1 -1
- package/dist/client/{ssrBoot-DjZDIkG_.js → ssrBoot-BBelCodY.js} +1 -1
- package/dist/client/style.css +1 -1
- package/dist/client/{transition-C8OQt_kp.js → transition-CxxPQppy.js} +1 -1
- package/package.json +1 -1
- package/widgets/EodashLayerControl.vue +3 -1
- package/widgets/ExportState.vue +3 -2
package/package.json
CHANGED
package/widgets/ExportState.vue
CHANGED
|
@@ -88,7 +88,7 @@ const copyBtns = [
|
|
|
88
88
|
|
|
89
89
|
const mapStepCode = computed(() => {
|
|
90
90
|
const [x, y, z] = mapPosition.value;
|
|
91
|
-
const preTag = "###
|
|
91
|
+
const preTag = "### <!" + "--{ layers=";
|
|
92
92
|
const endTag = `zoom="${z}" center=[${[x, y]}] animationOptions={duration:500}}-->
|
|
93
93
|
#### Tour step title
|
|
94
94
|
Text describing the current step of the tour and why it is interesting what the map shows currently
|
|
@@ -98,7 +98,8 @@ Text describing the current step of the tour and why it is interesting what the
|
|
|
98
98
|
const mapEntryCode = computed(() => {
|
|
99
99
|
const [x, y, z] = mapPosition.value;
|
|
100
100
|
const preTag =
|
|
101
|
-
|
|
101
|
+
"## Map Example <!" +
|
|
102
|
+
'--{as="eox-map" style="width: 100%; height: 500px;" layers=';
|
|
102
103
|
const endTag = `zoom="${z}" center=[${[x, y]}] }-->`;
|
|
103
104
|
return `${preTag}'${JSON.stringify(props.getLayers())}' ${endTag}`;
|
|
104
105
|
});
|