vue-openlayers-plugin 1.0.88 → 1.0.89
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/lib/{BasemapPanel-ca055f97.mjs → BasemapPanel-cba3afd6.mjs} +6 -6
- package/lib/{CoordinateLocationDialog-bcb93549.mjs → CoordinateLocationDialog-6e8a5f24.mjs} +1 -1
- package/lib/{FilterPanel-5493db0e.mjs → FilterPanel-9a8e2aca.mjs} +1 -1
- package/lib/{MapPrintDialog-cde4a9cc.mjs → LayerPanel-be35370b.mjs} +1 -1
- package/lib/{LayerPanel-467aaf4a.mjs → MapPrintDialog-03c0823b.mjs} +1 -1
- package/lib/{MeasurementDialog-48a220c5.mjs → MeasurementDialog-7fce097a.mjs} +7 -7
- package/lib/{MyMarkersDialog-6cd29bfa.mjs → MyMarkersDialog-7dd24d9a.mjs} +2 -2
- package/lib/{ViewBookmarksDialog-2e388ac1.mjs → ViewBookmarksDialog-60c9e851.mjs} +2 -2
- package/lib/{index-30ef3c66.mjs → index-05da77ba.mjs} +437 -524
- package/lib/{index-9a7511e2.mjs → index-7aae577e.mjs} +1 -1
- package/lib/{index-365a4c9c.mjs → index-b3c7ea8d.mjs} +1 -1
- package/lib/{index.es-051b071d.mjs → index.es-e4a6ccb9.mjs} +1 -1
- package/lib/index.esm.js +63 -63
- package/lib/index.umd.js +380 -467
- package/lib/style.css +318 -353
- package/package.json +1 -1
- package/types/src/components/CustomDialog/CustomDialog.vue.d.ts +1 -1
- package/types/src/components/OlDialogs/BasemapPanel.vue.d.ts +1 -0
- package/types/src/components/OlDialogs/BasemapPanel.vue.d.ts.map +1 -1
- package/types/src/components/OlDialogs/LayerPanel.vue.d.ts.map +1 -1
- package/types/src/components/OlDialogs/MeasurementDialog.vue.d.ts +1 -0
- package/types/src/components/OlDialogs/MeasurementDialog.vue.d.ts.map +1 -1
- package/types/src/components/OlDrawToolbar.vue.d.ts.map +1 -1
- package/types/src/components/OlLegendPanel.vue.d.ts +2 -26
- package/types/src/components/OlLegendPanel.vue.d.ts.map +1 -1
- package/types/src/core/layers/BaseLayer.d.ts +8 -0
- package/types/src/core/layers/BaseLayer.d.ts.map +1 -1
- package/types/tsconfig.tsbuildinfo +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineComponent, inject, computed, ref, watch, onMounted, onUnmounted,
|
|
2
|
-
import { l as layerEventBus } from "./index-
|
|
1
|
+
import { defineComponent, inject, computed, ref, watch, onMounted, onUnmounted, openBlock, createBlock, unref, withCtx, createElementVNode, createElementBlock, Fragment, renderList, normalizeClass, toDisplayString } from "vue";
|
|
2
|
+
import { l as layerEventBus, X, d as _export_sfc } from "./index-05da77ba.mjs";
|
|
3
3
|
import "ol";
|
|
4
4
|
const _hoisted_1 = { class: "basemap-content" };
|
|
5
5
|
const _hoisted_2 = { class: "basemap-grid" };
|
|
@@ -232,8 +232,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
232
232
|
}
|
|
233
233
|
};
|
|
234
234
|
return (_ctx, _cache) => {
|
|
235
|
-
|
|
236
|
-
return openBlock(), createBlock(_component_EPlusDialog, {
|
|
235
|
+
return openBlock(), createBlock(unref(X), {
|
|
237
236
|
modelValue: visible.value,
|
|
238
237
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => visible.value = $event),
|
|
239
238
|
title: "底图选择",
|
|
@@ -242,10 +241,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
242
241
|
"show-modal": false,
|
|
243
242
|
draggable: true,
|
|
244
243
|
resizable: true,
|
|
245
|
-
"show-close": true,
|
|
246
244
|
cacheId: "basemap-dialog",
|
|
247
245
|
position: "right",
|
|
248
246
|
class: "basemap-dialog",
|
|
247
|
+
"append-to-body": "",
|
|
249
248
|
onClose: handleClose
|
|
250
249
|
}, {
|
|
251
250
|
default: withCtx(() => [
|
|
@@ -275,6 +274,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
275
274
|
};
|
|
276
275
|
}
|
|
277
276
|
});
|
|
277
|
+
const BasemapPanel = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-75f232fd"]]);
|
|
278
278
|
export {
|
|
279
|
-
|
|
279
|
+
BasemapPanel as default
|
|
280
280
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, inject, computed, ref, reactive, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, createTextVNode } from "vue";
|
|
2
|
-
import { T as TooltipHelper } from "./index-
|
|
2
|
+
import { T as TooltipHelper } from "./index-05da77ba.mjs";
|
|
3
3
|
import "ol";
|
|
4
4
|
const _hoisted_1 = { class: "coordinate-content" };
|
|
5
5
|
const _hoisted_2 = { class: "format-selection" };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineComponent, inject, computed, ref, watch, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, createTextVNode, toDisplayString, createElementBlock, Fragment, renderList, normalizeClass } from "vue";
|
|
2
|
-
import { f as formatMeasurementResult, g as getUnitByType, d as _export_sfc } from "./index-
|
|
1
|
+
import { defineComponent, inject, computed, ref, watch, resolveComponent, openBlock, createBlock, unref, withCtx, createElementVNode, createVNode, createTextVNode, toDisplayString, createElementBlock, Fragment, renderList, normalizeClass } from "vue";
|
|
2
|
+
import { X, f as formatMeasurementResult, g as getUnitByType, d as _export_sfc } from "./index-05da77ba.mjs";
|
|
3
3
|
import "ol";
|
|
4
4
|
const getIconPath = (name) => {
|
|
5
5
|
return `/icons/${name}.svg`;
|
|
@@ -257,15 +257,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
257
257
|
const _component_el_option_group = resolveComponent("el-option-group");
|
|
258
258
|
const _component_el_select = resolveComponent("el-select");
|
|
259
259
|
const _component_el_button = resolveComponent("el-button");
|
|
260
|
-
|
|
261
|
-
return openBlock(), createBlock(_component_EPlusDialog, {
|
|
260
|
+
return openBlock(), createBlock(unref(X), {
|
|
262
261
|
modelValue: dialogVisible.value,
|
|
263
262
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => dialogVisible.value = $event),
|
|
264
263
|
title: "图上量算",
|
|
265
264
|
width: "400px",
|
|
266
265
|
"before-close": handleClose,
|
|
267
266
|
"show-modal": false,
|
|
268
|
-
cacheId: "measurement-dialog"
|
|
267
|
+
cacheId: "measurement-dialog",
|
|
268
|
+
"append-to-body": ""
|
|
269
269
|
}, {
|
|
270
270
|
default: withCtx(() => [
|
|
271
271
|
createElementVNode("div", _hoisted_1, [
|
|
@@ -329,7 +329,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
329
329
|
type: "text",
|
|
330
330
|
size: "small",
|
|
331
331
|
onClick: clearMeasurement,
|
|
332
|
-
style: { "color": "
|
|
332
|
+
style: { "color": "var(--el-color-danger)" }
|
|
333
333
|
}, {
|
|
334
334
|
default: withCtx(() => [..._cache[2] || (_cache[2] = [
|
|
335
335
|
createTextVNode(" 清除 ", -1)
|
|
@@ -363,7 +363,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
363
363
|
};
|
|
364
364
|
}
|
|
365
365
|
});
|
|
366
|
-
const MeasurementDialog = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
366
|
+
const MeasurementDialog = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-60e80f64"]]);
|
|
367
367
|
export {
|
|
368
368
|
MeasurementDialog as default
|
|
369
369
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, inject, computed, ref, reactive, onUnmounted, watch, resolveComponent, openBlock, createElementBlock, Fragment, createVNode, withCtx, createElementVNode, unref, normalizeClass, createTextVNode, toDisplayString, renderList, createBlock, withModifiers } from "vue";
|
|
2
|
-
import { i as plus_default, j as folder_opened_default, k as download_default, m as delete_default, s as search_default, n as location_filled_default, o as edit_default, M as MarkerDrawingAdapter, t as toLonLat } from "./index-
|
|
3
|
-
import { E as ElMessageBox } from "./index-
|
|
2
|
+
import { i as plus_default, j as folder_opened_default, k as download_default, m as delete_default, s as search_default, n as location_filled_default, o as edit_default, M as MarkerDrawingAdapter, t as toLonLat } from "./index-05da77ba.mjs";
|
|
3
|
+
import { E as ElMessageBox } from "./index-b3c7ea8d.mjs";
|
|
4
4
|
import "ol";
|
|
5
5
|
const _hoisted_1 = { class: "markers-content" };
|
|
6
6
|
const _hoisted_2 = { class: "toolbar" };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, computed, ref, reactive, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, createTextVNode, unref, createElementBlock, Fragment, renderList, withModifiers, toDisplayString, createCommentVNode } from "vue";
|
|
2
|
-
import { i as plus_default, j as folder_opened_default, k as download_default, m as delete_default, s as search_default, q as camera_default, v as view_default, o as edit_default, u as location_default, z as zoom_in_default } from "./index-
|
|
3
|
-
import { E as ElMessageBox } from "./index-
|
|
2
|
+
import { i as plus_default, j as folder_opened_default, k as download_default, m as delete_default, s as search_default, q as camera_default, v as view_default, o as edit_default, u as location_default, z as zoom_in_default } from "./index-05da77ba.mjs";
|
|
3
|
+
import { E as ElMessageBox } from "./index-b3c7ea8d.mjs";
|
|
4
4
|
import "ol";
|
|
5
5
|
const _hoisted_1 = { class: "bookmarks-content" };
|
|
6
6
|
const _hoisted_2 = { class: "toolbar" };
|