@delta10/atlas-sdk 0.1.11 → 0.1.12

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.
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,9 @@
1
+ const s = (t, e) => {
2
+ const o = t.__vccOpts || t;
3
+ for (const [r, c] of e)
4
+ o[r] = c;
5
+ return o;
6
+ };
7
+ export {
8
+ s as default
9
+ };
@@ -0,0 +1,23 @@
1
+ import { openBlock as l, createElementBlock as n, createElementVNode as t } from "vue";
2
+ const o = {
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ width: "24",
5
+ height: "24"
6
+ };
7
+ function r(c, e) {
8
+ return l(), n("svg", o, [...e[0] || (e[0] = [
9
+ t("path", {
10
+ fill: "none",
11
+ d: "M0 0h24v24H0z"
12
+ }, null, -1),
13
+ t("path", {
14
+ fill: "currentColor",
15
+ d: "m11.99 18.54-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27zm0-11.47L17.74 9 12 13.47 6.26 9z"
16
+ }, null, -1)
17
+ ])]);
18
+ }
19
+ const s = { render: r };
20
+ export {
21
+ s as default,
22
+ r as render
23
+ };
@@ -0,0 +1,21 @@
1
+ import { openBlock as t, createElementBlock as n, createElementVNode as e } from "vue";
2
+ const o = {
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ width: "24",
5
+ height: "24",
6
+ fill: "currentColor"
7
+ };
8
+ function r(c, l) {
9
+ return t(), n("svg", o, [...l[0] || (l[0] = [
10
+ e("path", {
11
+ fill: "none",
12
+ d: "M0 0h24v24H0z"
13
+ }, null, -1),
14
+ e("path", { d: "m20.5 3-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5M10 5.47l4 1.4v11.66l-4-1.4zm-5 .99 3-1.01v11.7l-3 1.16zm14 11.08-3 1.01V6.86l3-1.16z" }, null, -1)
15
+ ])]);
16
+ }
17
+ const m = { render: r };
18
+ export {
19
+ m as default,
20
+ r as render
21
+ };
@@ -0,0 +1,20 @@
1
+ import { openBlock as t, createElementBlock as n, createElementVNode as o } from "vue";
2
+ const l = {
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ width: "10",
5
+ height: "2"
6
+ };
7
+ function r(d, e) {
8
+ return t(), n("svg", l, [...e[0] || (e[0] = [
9
+ o("path", {
10
+ fill: "#000",
11
+ "fill-rule": "evenodd",
12
+ d: "M10 2V0H0v2z"
13
+ }, null, -1)
14
+ ])]);
15
+ }
16
+ const s = { render: r };
17
+ export {
18
+ s as default,
19
+ r as render
20
+ };
@@ -0,0 +1,20 @@
1
+ import { openBlock as t, createElementBlock as l, createElementVNode as n } from "vue";
2
+ const o = {
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ width: "10",
5
+ height: "10"
6
+ };
7
+ function r(d, e) {
8
+ return t(), l("svg", o, [...e[0] || (e[0] = [
9
+ n("path", {
10
+ fill: "#000",
11
+ "fill-rule": "evenodd",
12
+ d: "M4 10h2V6h4V4H6V0H4v4H0v2h4z"
13
+ }, null, -1)
14
+ ])]);
15
+ }
16
+ const s = { render: r };
17
+ export {
18
+ s as default,
19
+ r as render
20
+ };
@@ -0,0 +1,99 @@
1
+ export type StyleConfig = any;
2
+ export interface SelectableConfig {
3
+ enabled: boolean;
4
+ layers: string[];
5
+ style?: StyleConfig;
6
+ }
7
+ export interface ModifyConfig {
8
+ enabled: boolean;
9
+ layer: string;
10
+ style?: StyleConfig;
11
+ }
12
+ export interface SnapConfig {
13
+ enabled: boolean;
14
+ targetLayer: string;
15
+ pixelTolerance?: number;
16
+ }
17
+ export interface InteractionsConfig {
18
+ selectable?: SelectableConfig;
19
+ modify?: ModifyConfig;
20
+ snap?: SnapConfig;
21
+ }
22
+ export interface LayerConfig {
23
+ type: "wmts" | "vector" | "wms";
24
+ options: {
25
+ identifier: string;
26
+ title: string;
27
+ url?: string;
28
+ layer?: string;
29
+ matrixSet?: string;
30
+ format?: string;
31
+ projection?: string;
32
+ features?: Array<{
33
+ type: "Point" | "Polygon";
34
+ coordinates: number[] | number[][][] | number[][][][];
35
+ properties?: Record<string, any>;
36
+ }>;
37
+ style?: StyleConfig;
38
+ styleFunction?: (feature: any, currentStyle: any, resolution: number) => any;
39
+ };
40
+ }
41
+ type __VLS_Props = {
42
+ layers?: LayerConfig[];
43
+ baseLayers?: LayerConfig[];
44
+ toggleableLayers?: LayerConfig[];
45
+ interactions?: InteractionsConfig;
46
+ zoom?: number;
47
+ center?: [number, number];
48
+ };
49
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {
50
+ map: import("vue").Ref<any, any>;
51
+ view: import("vue").Ref<any, any>;
52
+ fitToFeatures: (features: Array<{
53
+ type: "Point" | "Polygon";
54
+ coordinates: number[] | number[][][] | number[][][][];
55
+ properties?: Record<string, any>;
56
+ }>) => void;
57
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
58
+ featureSelected: (event: {
59
+ selected: any[];
60
+ }) => any;
61
+ featureDeselected: (event: {
62
+ deselected: any[];
63
+ }) => any;
64
+ featureModified: (event: {
65
+ features: any[];
66
+ }) => any;
67
+ mapClicked: (event: {
68
+ coordinate: [number, number];
69
+ pixel: [number, number];
70
+ }) => any;
71
+ modifyCancelled: (event: {
72
+ features: any[];
73
+ }) => any;
74
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
75
+ onFeatureSelected?: ((event: {
76
+ selected: any[];
77
+ }) => any) | undefined;
78
+ onFeatureDeselected?: ((event: {
79
+ deselected: any[];
80
+ }) => any) | undefined;
81
+ onFeatureModified?: ((event: {
82
+ features: any[];
83
+ }) => any) | undefined;
84
+ onMapClicked?: ((event: {
85
+ coordinate: [number, number];
86
+ pixel: [number, number];
87
+ }) => any) | undefined;
88
+ onModifyCancelled?: ((event: {
89
+ features: any[];
90
+ }) => any) | undefined;
91
+ }>, {
92
+ baseLayers: LayerConfig[];
93
+ toggleableLayers: LayerConfig[];
94
+ layers: LayerConfig[];
95
+ zoom: number;
96
+ center: [number, number];
97
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
98
+ declare const _default: typeof __VLS_export;
99
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import o from "./Map.vue2.js";
2
+ /* empty css */
3
+ import t from "../_virtual/_plugin-vue_export-helper.js";
4
+ const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-67707055"]]);
5
+ export {
6
+ m as default
7
+ };