@vertigis/viewer-spec 48.4.0 → 48.7.0
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/app-config/common/CoordinateFormat.d.ts +4 -0
- package/app-config/common/CoordinateFormat.js +1 -0
- package/app-config/common/CoordinateModelProperties.d.ts +14 -5
- package/app-config/mobile/CoordinateModelProperties.d.ts +10 -0
- package/app-config/mobile/CoordinateModelProperties.js +1 -0
- package/app-config/schema/common-app-config.schema.json +1 -1
- package/app-config/schema/mobile-app-config.schema.json +1 -1
- package/app-config/schema/web-app-config.schema.json +1 -1
- package/app-config/web/CoordinateModelProperties.d.ts +42 -0
- package/app-config/web/MapCoordinatesModelProperties.d.ts +11 -4
- package/messaging/registry/edit.d.ts +4 -4
- package/messaging/registry/map.d.ts +9 -1
- package/messaging/registry/map.js +1 -1
- package/messaging/registry/portal.d.ts +42 -0
- package/messaging/registry/portal.js +1 -1
- package/messaging/schema/common-action.schema.json +17 -1
- package/messaging/schema/common-event.schema.json +12 -0
- package/messaging/schema/mobile-action.schema.json +17 -1
- package/messaging/schema/mobile-event.schema.json +12 -0
- package/messaging/schema/web-action.schema.json +70 -1
- package/messaging/schema/web-event.schema.json +12 -0
- package/package.json +3 -3
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{};
|
|
@@ -1,10 +1,23 @@
|
|
|
1
1
|
import type { SpatialReference as SpatialReferenceJson } from "@vertigis/arcgis-extensions/portal/SpatialReference";
|
|
2
|
-
import type { GeographicTransformationJson, Transformation } from "@vertigis/arcgis-extensions/utilities/geometry";
|
|
2
|
+
import type { GeographicTransformationJson, Transformation as ArcXTransformation } from "@vertigis/arcgis-extensions/utilities/geometry";
|
|
3
3
|
import type { ServiceModelProperties } from "./ServiceModelProperties.js";
|
|
4
|
+
/**
|
|
5
|
+
* @inheritdoc
|
|
6
|
+
*/
|
|
7
|
+
export interface Transformation extends ArcXTransformation {
|
|
8
|
+
/**
|
|
9
|
+
* The unique ID for the transformation item.
|
|
10
|
+
*/
|
|
11
|
+
id?: string;
|
|
12
|
+
}
|
|
4
13
|
/**
|
|
5
14
|
* Specifies a transformation to use between two spatial references.
|
|
6
15
|
*/
|
|
7
16
|
export interface TransformationJson {
|
|
17
|
+
/**
|
|
18
|
+
* The unique ID for the transformation item.
|
|
19
|
+
*/
|
|
20
|
+
id?: string;
|
|
8
21
|
/**
|
|
9
22
|
* The spatial reference that the data is collected in.
|
|
10
23
|
*/
|
|
@@ -23,10 +36,6 @@ export interface TransformationJson {
|
|
|
23
36
|
* Configuration for the coordinate service.
|
|
24
37
|
*/
|
|
25
38
|
export interface CoordinateModelProperties extends ServiceModelProperties {
|
|
26
|
-
/**
|
|
27
|
-
* Whether the coordinates can be overridden by the end user.
|
|
28
|
-
*/
|
|
29
|
-
canOverride?: boolean;
|
|
30
39
|
/**
|
|
31
40
|
* Rules to apply when transforming coordinates between coordinate systems.
|
|
32
41
|
*/
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { CoordinateModelProperties as CommonCoordinateModelProperties } from "../common/CoordinateModelProperties";
|
|
2
|
+
/**
|
|
3
|
+
* Configuration for the coordinate service.
|
|
4
|
+
*/
|
|
5
|
+
export interface CoordinateModelProperties extends CommonCoordinateModelProperties {
|
|
6
|
+
/**
|
|
7
|
+
* Whether the coordinates can be overridden by the end user.
|
|
8
|
+
*/
|
|
9
|
+
canOverride?: boolean;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{};
|