@vertigis/viewer-spec 60.9.0 → 61.0.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/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/messaging/Event.d.ts +2 -1
- package/messaging/registry/geometry.d.ts +2 -3
- package/messaging/registry/map.d.ts +1 -1
- package/messaging/schema/common-action.schema.json +1834 -575
- package/messaging/schema/common-event.schema.json +1639 -305
- package/messaging/schema/mobile-action.schema.json +1912 -639
- package/messaging/schema/mobile-event.schema.json +1680 -381
- package/messaging/schema/web-action.schema.json +2258 -1092
- package/messaging/schema/web-charts-command-definitions.md +210 -3
- package/messaging/schema/web-drawing-command-definitions.md +18 -57
- package/messaging/schema/web-drawing-operation-definitions.md +114 -63
- package/messaging/schema/web-edit-command-definitions.md +212 -5
- package/messaging/schema/web-event.schema.json +1810 -412
- package/messaging/schema/web-geocode-operation-definitions.md +1 -1
- package/messaging/schema/web-geolocation-operation-definitions.md +1 -1
- package/messaging/schema/web-geometry-operation-definitions.md +77 -16
- package/messaging/schema/web-kpi-command-definitions.md +210 -3
- package/messaging/schema/web-layer-comparison-command-definitions.md +8 -8
- package/messaging/schema/web-layers-command-definitions.md +104 -104
- package/messaging/schema/web-layers-operation-definitions.md +37 -37
- package/messaging/schema/web-location-marker-command-definitions.md +68 -6
- package/messaging/schema/web-map-command-definitions.md +234 -27
- package/messaging/schema/web-map-operation-definitions.md +1 -1
- package/messaging/schema/web-measurement-command-definitions.md +18 -57
- package/messaging/schema/web-measurement-operation-definitions.md +17 -38
- package/messaging/schema/web-portal-operation-definitions.md +1 -1
- package/messaging/schema/web-results-command-definitions.md +280 -4
- package/messaging/schema/web-results-operation-definitions.md +289 -13
- package/messaging/schema/web-sketching-command-definitions.md +2 -2
- package/messaging/schema/web-sketching-operation-definitions.md +24 -24
- package/package.json +2 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/messaging/Event.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { ResourceHandle } from "@arcgis/core/core/Handles";
|
|
1
2
|
import type { Message } from "./Message.js";
|
|
2
3
|
import type { Model } from "./common.js";
|
|
3
4
|
/**
|
|
@@ -22,5 +23,5 @@ export interface Event<T = void> extends Message {
|
|
|
22
23
|
* published.
|
|
23
24
|
* @returns A handle that can be used to unsubscribe.
|
|
24
25
|
*/
|
|
25
|
-
subscribe: (callback: EventCallback<T>) =>
|
|
26
|
+
subscribe: (callback: EventCallback<T>) => ResourceHandle;
|
|
26
27
|
}
|
|
@@ -2,8 +2,7 @@ import type Point from "@arcgis/core/geometry/Point";
|
|
|
2
2
|
import type Polygon from "@arcgis/core/geometry/Polygon";
|
|
3
3
|
import type Polyline from "@arcgis/core/geometry/Polyline";
|
|
4
4
|
import type SpatialReference from "@arcgis/core/geometry/SpatialReference";
|
|
5
|
-
import type GeographicTransformation from "@arcgis/core/geometry/operators/support/GeographicTransformation
|
|
6
|
-
import type GeographicTransformationLegacy from "@arcgis/core/geometry/support/GeographicTransformation";
|
|
5
|
+
import type GeographicTransformation from "@arcgis/core/geometry/operators/support/GeographicTransformation";
|
|
7
6
|
import type { GeometryUnion } from "@arcgis/core/unionTypes.js";
|
|
8
7
|
import type { Command } from "../Command.js";
|
|
9
8
|
import { CommandRegistry } from "../CommandRegistry.js";
|
|
@@ -27,7 +26,7 @@ export interface ProjectArgs {
|
|
|
27
26
|
* The geographic transformation which contains the steps to transform the
|
|
28
27
|
* input spatial reference to the output spatial reference.
|
|
29
28
|
*/
|
|
30
|
-
transformation?: GeographicTransformation
|
|
29
|
+
transformation?: GeographicTransformation;
|
|
31
30
|
}
|
|
32
31
|
/**
|
|
33
32
|
* The units for distance buffers supported by ArcGIS.
|
|
@@ -4,7 +4,7 @@ import type Viewpoint from "@arcgis/core/Viewpoint";
|
|
|
4
4
|
import type Extent from "@arcgis/core/geometry/Extent";
|
|
5
5
|
import type Point from "@arcgis/core/geometry/Point";
|
|
6
6
|
import type SpatialReference from "@arcgis/core/geometry/SpatialReference";
|
|
7
|
-
import type GeographicTransformation from "@arcgis/core/geometry/support/GeographicTransformation";
|
|
7
|
+
import type GeographicTransformation from "@arcgis/core/geometry/operators/support/GeographicTransformation";
|
|
8
8
|
import type Layer from "@arcgis/core/layers/Layer";
|
|
9
9
|
import type { GeometryUnion } from "@arcgis/core/unionTypes.js";
|
|
10
10
|
import type { GeometryJsonType } from "@vertigis/arcgis-extensions/json/GeometryJson.js";
|