@conterra/ct-mapapps-typings 4.18.0-next.20240424035933 → 4.18.0-next.20240425141401
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/agssearch/api.d.ts +6 -2
- package/package.json +1 -1
package/agssearch/api.d.ts
CHANGED
|
@@ -118,10 +118,14 @@ interface AGSStoreFromURLOptions extends AGSStoreCommonOptions {
|
|
|
118
118
|
* Flag to indicate that the layer supports filtering using POST requests.
|
|
119
119
|
* Default is `false` for non ArcGIS OGCFeaturesServices,
|
|
120
120
|
* which means that requests with long query strings will fail.
|
|
121
|
-
* If `supportsIdQueries` is `true` and `
|
|
121
|
+
* If `supportsIdQueries` is `true` and `supportsPostQueries` is `false`
|
|
122
122
|
* then these id queries are split to ensure GET requests are used for feature lookup by ids.
|
|
123
123
|
*/
|
|
124
|
-
|
|
124
|
+
supportsPostQueries?: boolean;
|
|
125
|
+
/**
|
|
126
|
+
* Name of the geometry field for polygon queries against OGCFeatureServices.
|
|
127
|
+
*/
|
|
128
|
+
geometryFieldName?: string;
|
|
125
129
|
}
|
|
126
130
|
/**
|
|
127
131
|
* The type of stores created by the {@link AGSStoreFactory}.
|