@opengis/gis 0.2.115 → 0.2.117
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/dist/CardIcon-FxpK90rl.js +51 -0
- package/dist/EntityCreatePage-Da8XgBKU.js +141 -0
- package/dist/EntityEditPage-QktKEAxz.js +167 -0
- package/dist/EntityTablePage-ii-Wz0YZ.js +286 -0
- package/dist/ExtentOutlineLayer.vue_vue_type_script_setup_true_lang-Bl5ZwNQX.js +70 -0
- package/dist/FileEdit-C7tteUeG.js +37 -0
- package/dist/HeaderActions.vue_vue_type_script_setup_true_lang-CKEep8BL.js +796 -0
- package/dist/MapSettings-CjJ7WWkn.js +672 -0
- package/dist/MapSettingsTabs.vue_vue_type_script_setup_true_lang-CKCK3NqY.js +29 -0
- package/dist/MonacoEditor.vue_vue_type_script_setup_true_lang-Bs7gz6Lt.js +408 -0
- package/dist/RastersTablePage-DpKkFOyo.js +359 -0
- package/dist/TableFormHeader.vue_vue_type_script_setup_true_lang-Mci_tseM.js +47 -0
- package/dist/cartocss-C_O8qG3h.js +892 -0
- package/dist/import-utils-BbZ1gVp-.js +123 -0
- package/dist/index-4aSsUBB8.js +10020 -0
- package/dist/index.css +1 -1
- package/dist/index.js +16 -17634
- package/dist/index.umd.cjs +41 -244
- package/dist/raster-Du8ZMtjf.js +664 -0
- package/dist/register-B2gF-GzA.js +780 -0
- package/dist/service-BnPCDVwm.js +2573 -0
- package/dist/vs-datatable-QKks38xL.js +800 -0
- package/module/gis/form/feedback.answer.form.json +11 -0
- package/module/gis/form/gis.cartocss.form.json +8 -0
- package/module/gis/form/gis.metadata_new.form.json +196 -0
- package/module/gis/form/gis.ogc_service.form.json +8 -2
- package/module/gis/select/layer_list_text.sql +7 -0
- package/module/gis/select/pg.column_name.geometry.sql +13 -0
- package/module/gis/table/gis.metadata_new.table.json +138 -0
- package/module/gis/table/site.gis.registers.table.json +1 -1
- package/module/test/cls/doc_status.json +31 -31
- package/module/test/select/core.user_uid.sql +1 -1
- package/package.json +3 -4
- package/server/plugins/mapnik/funcs/mapnik.js +5 -5
- package/server/routes/gis/cartocss/get.cartocss.js +1 -1
- package/server/routes/mapnik/controllers/clearTiles.js +8 -4
- package/server/routes/mapnik/controllers/createXmlMulti.js +1 -1
- package/server/routes/mapnik/controllers/fileSearch.js +6 -2
- package/server/routes/mapnik/controllers/fileStat.js +4 -3
- package/server/routes/mapnik/controllers/mapnikLogger.js +1 -1
- package/server/routes/mapnik/controllers/mapnikStat.js +1 -1
- package/server/routes/mapnik/controllers/rasterInfo.js +5 -2
- package/server/routes/mapnik/controllers/readDir.js +5 -2
- package/server/routes/mapnik/controllers/rtile.js +21 -6
- package/server/routes/mapnik/index.js +0 -1
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { defineComponent as y, computed as f, watch as d, createCommentVNode as x } from "vue";
|
|
2
|
+
import { f as b, u as _ } from "./index-4aSsUBB8.js";
|
|
3
|
+
const I = /* @__PURE__ */ y({
|
|
4
|
+
__name: "ExtentOutlineLayer",
|
|
5
|
+
props: {
|
|
6
|
+
extent: {},
|
|
7
|
+
layerId: {},
|
|
8
|
+
beforeId: {}
|
|
9
|
+
},
|
|
10
|
+
setup(c) {
|
|
11
|
+
const a = c, o = a.layerId || "extent-outline-layer", m = `${o}-source`, l = f(() => {
|
|
12
|
+
const t = a.extent;
|
|
13
|
+
if (!t || t.length !== 4) return null;
|
|
14
|
+
const [e, r, s, u] = t;
|
|
15
|
+
return [e, r, s, u].some(
|
|
16
|
+
(i) => typeof i != "number" || Number.isNaN(i)
|
|
17
|
+
) ? null : {
|
|
18
|
+
type: "FeatureCollection",
|
|
19
|
+
features: [
|
|
20
|
+
{
|
|
21
|
+
type: "Feature",
|
|
22
|
+
properties: {},
|
|
23
|
+
geometry: {
|
|
24
|
+
type: "Polygon",
|
|
25
|
+
coordinates: [[
|
|
26
|
+
[e, r],
|
|
27
|
+
[s, r],
|
|
28
|
+
[s, u],
|
|
29
|
+
[e, u],
|
|
30
|
+
[e, r]
|
|
31
|
+
]]
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
};
|
|
36
|
+
}), p = b(), n = _(o, {
|
|
37
|
+
sourceId: m,
|
|
38
|
+
source: {
|
|
39
|
+
type: "geojson",
|
|
40
|
+
data: l.value || { type: "FeatureCollection", features: [] }
|
|
41
|
+
},
|
|
42
|
+
layer: {
|
|
43
|
+
id: o,
|
|
44
|
+
type: "line",
|
|
45
|
+
paint: {
|
|
46
|
+
"line-color": "#ef4444",
|
|
47
|
+
"line-width": 2
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
beforeId: a.beforeId ?? null
|
|
51
|
+
});
|
|
52
|
+
return d(
|
|
53
|
+
() => l.value,
|
|
54
|
+
(t) => {
|
|
55
|
+
var r;
|
|
56
|
+
if (!t) {
|
|
57
|
+
n.setVisible(!1), n.setData({ type: "FeatureCollection", features: [] });
|
|
58
|
+
return;
|
|
59
|
+
}
|
|
60
|
+
n.setVisible(!0), n.setData(t);
|
|
61
|
+
const e = (r = p.map) == null ? void 0 : r.value;
|
|
62
|
+
e != null && e.moveLayer && e.getLayer(o) && e.moveLayer(o);
|
|
63
|
+
},
|
|
64
|
+
{ immediate: !0 }
|
|
65
|
+
), (t, e) => x("", !0);
|
|
66
|
+
}
|
|
67
|
+
});
|
|
68
|
+
export {
|
|
69
|
+
I as _
|
|
70
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { openBlock as n, createElementBlock as t, createElementVNode as e } from "vue";
|
|
2
|
+
import { _ as r } from "./index-4aSsUBB8.js";
|
|
3
|
+
const i = {}, s = {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
width: "12px",
|
|
6
|
+
height: "24",
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
stroke: "currentColor",
|
|
10
|
+
"stroke-width": "2",
|
|
11
|
+
"stroke-linecap": "round",
|
|
12
|
+
"stroke-linejoin": "round"
|
|
13
|
+
};
|
|
14
|
+
function l(d, o) {
|
|
15
|
+
return n(), t("svg", s, [...o[0] || (o[0] = [
|
|
16
|
+
e("path", {
|
|
17
|
+
d: "M20,16v4a2,2,0,0,1-2,2H4a2,2,0,0,1-2-2V6A2,2,0,0,1,4,4H8",
|
|
18
|
+
fill: "none",
|
|
19
|
+
stroke: "#000000",
|
|
20
|
+
"stroke-linecap": "round",
|
|
21
|
+
"stroke-linejoin": "round",
|
|
22
|
+
"stroke-width": "2"
|
|
23
|
+
}, null, -1),
|
|
24
|
+
e("polygon", {
|
|
25
|
+
fill: "none",
|
|
26
|
+
points: "12.5 15.8 22 6.2 17.8 2 8.3 11.5 8 16 12.5 15.8",
|
|
27
|
+
stroke: "#000000",
|
|
28
|
+
"stroke-linecap": "round",
|
|
29
|
+
"stroke-linejoin": "round",
|
|
30
|
+
"stroke-width": "2"
|
|
31
|
+
}, null, -1)
|
|
32
|
+
])]);
|
|
33
|
+
}
|
|
34
|
+
const p = /* @__PURE__ */ r(i, [["render", l]]);
|
|
35
|
+
export {
|
|
36
|
+
p as F
|
|
37
|
+
};
|