@vertigis/arcgis-extensions 34.3.0 → 34.4.1
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/declarations/arcgis-js-api-extensions/index.d.ts +4 -0
- package/docs/html/assets/js/search.js +1 -1
- package/docs/html/classes/tasks_identify_imagerylayeridentifyprovider.imagerylayeridentifyprovider.html +3 -3
- package/docs/html/enums/support_esri.wellknownbasemap.html +21 -21
- package/docs/html/interfaces/portal_layerdefinition.fieldoverride.html +3 -3
- package/docs/html/interfaces/portal_layerdefinition.layerdefinition-1.html +48 -48
- package/docs/html/interfaces/portal_layerdefinition.layerdefinitiondefaults.html +8 -8
- package/docs/html/interfaces/portal_layerdefinition.layertimeinfo.html +9 -9
- package/docs/html/interfaces/portal_layerdefinition.orderbyclause.html +3 -3
- package/docs/html/interfaces/portal_layerdefinition.timeinfoexportoptions.html +4 -4
- package/docs/html/interfaces/portal_popupinfo.orderbyfields.html +2 -2
- package/docs/html/interfaces/portal_popupinfo.popupelement.html +5 -5
- package/docs/html/interfaces/portal_popupinfo.popupinfo-1.html +8 -8
- package/docs/html/interfaces/portal_popupinfo.relatedrecordsinfo.html +2 -2
- package/docs/html/interfaces/portal_webmap.webmap-1.html +16 -16
- package/docs/html/interfaces/portal_widgets.floorfilter.html +20 -8
- package/docs/html/interfaces/portal_widgets.range.html +16 -4
- package/docs/html/interfaces/portal_widgets.timeslider.html +18 -6
- package/docs/html/interfaces/portal_widgets.widgets.html +16 -4
- package/docs/html/interfaces/support__restapijson.restapimapservicetimeinfo.html +341 -0
- package/docs/html/interfaces/support__restapijson.restapiservicetimeinfo.html +242 -0
- package/docs/html/interfaces/support_esri.accessorlike.html +4 -4
- package/docs/html/interfaces/support_esri.changeevent.html +4 -4
- package/docs/html/interfaces/support_esri.layerwithsublayers.html +1 -1
- package/docs/html/interfaces/support_esri.pointcloudlayercachedstatistics.html +3 -3
- package/docs/html/interfaces/support_esri.pointcloudlayercachedstatisticsfrequentvalues.html +2 -2
- package/docs/html/interfaces/support_esri.pointcloudlayercachedstatisticshistogram.html +3 -3
- package/docs/html/interfaces/support_esri.pointcloudlayercachedstatisticslabel.html +2 -2
- package/docs/html/interfaces/support_esri.pointcloudlayercachedstatisticslabels.html +1 -1
- package/docs/html/interfaces/support_esri.pointcloudlayercachedstatisticsstats.html +9 -9
- package/docs/html/interfaces/support_esri.sublayerlike.html +14 -14
- package/docs/html/interfaces/utilities__layers.timeawarelayer.html +354 -0
- package/docs/html/modules/portal_layerdefinition.html +2 -2
- package/docs/html/modules/portal_layerdefinition.layerdefinition.html +2 -2
- package/docs/html/modules/portal_layerdefinition.layerdefinitioncapabilities.html +6 -6
- package/docs/html/modules/portal_popupinfo.html +1 -1
- package/docs/html/modules/portal_popupinfo.popupinfo.html +1 -1
- package/docs/html/modules/portal_webmap.webmap.html +1 -1
- package/docs/html/modules/portal_widgets.html +172 -6
- package/docs/html/modules/support__query.html +58 -0
- package/docs/html/modules/support__restapijson.html +20 -0
- package/docs/html/modules/support_esri.html +73 -31
- package/docs/html/modules/utilities__layers.html +149 -35
- package/docs/html/modules/version.html +1 -1
- package/package.json +1 -1
- package/portal/LayerDefinition.js +1 -1
- package/portal/PopupInfo.js +1 -1
- package/portal/WebMap.d.ts +1 -1
- package/portal/WebMap.js +1 -1
- package/portal/Widgets.d.ts +35 -2
- package/portal/Widgets.js +1 -1
- package/support/_query.d.ts +12 -1
- package/support/_query.js +1 -1
- package/support/_restApiJson.d.ts +38 -1
- package/support/esri.d.ts +3 -0
- package/tasks/identify/ImageryLayerIdentifyProvider.js +1 -1
- package/utilities/_layers.d.ts +46 -0
- package/utilities/_layers.js +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -398,6 +398,10 @@ declare namespace __esri {
|
|
|
398
398
|
view: __esri.MapView | __esri.SceneView;
|
|
399
399
|
}
|
|
400
400
|
|
|
401
|
+
export interface FeatureLayerView {
|
|
402
|
+
view: __esri.MapView | __esri.SceneView;
|
|
403
|
+
}
|
|
404
|
+
|
|
401
405
|
export interface Symbol3DLayerProperties {
|
|
402
406
|
// ESRI421: Check if they've added this to the interface. The type
|
|
403
407
|
// property is required for autocasting to work.
|