import "@arcgis/map-components/components/arcgis-oriented-imagery-viewer";
The OrientedImageryViewer component allows the user to explore and use their oriented images.
Demo
Properties
Property | Attribute | Type |
---|---|---|
auto-destroy-disabled | boolean | |
current-coverage-visible | boolean | |
data-capture-enabled | boolean | |
disabled | boolean | |
gallery-opened | boolean | |
icon | string | |
image-enhancement-tool-active | boolean | |
imageGalleryEnabled readonly |
| boolean |
is-additional-coverage-visible | boolean | |
is-additional-point-sources-visible | boolean | |
label | string | |
| ||
map-image-conversion-tool-state | boolean | |
navigation-tool-active | boolean | |
oriented-imagery-layer-item-id | string | |
position | "bottom-leading" | "bottom-left" | "bottom-right" | "bottom-trailing" | "manual" | "top-leading" | "top-left" | "top-right" | "top-trailing" | |
reference-element | ArcgisLinkChart | ArcgisMap | ArcgisScene | string | |
referencePoint readonly |
|
autoDestroyDisabled
autoDestroyDisabled: boolean
If true, the component will not be destroyed automatically when it is disconnected from the document. This is useful when you want to move the component to a different place on the page, or temporarily hide it. If this is set, make sure to call the `destroy` method when you are done to prevent memory leaks.
- Attribute
- auto-destroy-disabled
- Default value
- false
currentCoverageVisible
currentCoverageVisible: boolean
Toggles the visibility of the current footprint polygon associated with the selected image loaded in the viewer.
- Attribute
- current-coverage-visible
- Default value
- true
dataCaptureEnabled
dataCaptureEnabled: boolean
Indicates whether the data capture tools are enabled in the oriented imagery viewer for digitization.
- Attribute
- data-capture-enabled
- Default value
- false
disabled
disabled: boolean
When false
, the view click interaction is enabled for the oriented imagery viewer widget.
- Attribute
- disabled
- Default value
- false
galleryOpened
galleryOpened: boolean
Indicates if the image gallery functionality is available in the widget.
- Attribute
- gallery-opened
- Default value
- false
icon
icon: string
Icon which represents the component. Typically used when the component is controlled by another component (e.g. by the Expand component). Search Calcite Icons for possible values.
- Attribute
- icon
- Default value
- "oriented-imagery-widget"
imageEnhancementToolActive
imageEnhancementToolActive: boolean
Indicates if the image enhancement tool is active.
- Attribute
- image-enhancement-tool-active
- Default value
- false
imageGalleryEnabled
imageGalleryEnabled: boolean
When true
, the image gallery functionality is available in the widget.
- Default value
- false
isAdditionalCoverageVisible
isAdditionalCoverageVisible: boolean
Indicates if the additional footprint polygons are visible for the selected image loaded in the viewer.
- Attribute
- is-additional-coverage-visible
- Default value
- false
isAdditionalPointSourcesVisible
isAdditionalPointSourcesVisible: boolean
Indicates if the additional camera locations are visible for the selected image loaded in the viewer.
- Attribute
- is-additional-point-sources-visible
- Default value
- false
mapImageConversionToolState
mapImageConversionToolState: boolean
Indicates if the map-image location tool is available in the widget.
- Attribute
- map-image-conversion-tool-state
- Default value
- false
navigationToolActive
navigationToolActive: boolean
When true
, the navigation tool is available in the widget.
- Attribute
- navigation-tool-active
- Default value
- false
orientedImageryLayerItemId
orientedImageryLayerItemId: string
- Attribute
- oriented-imagery-layer-item-id
position
position: "bottom-leading" | "bottom-left" | "bottom-right" | "bottom-trailing" | "manual" | "top-leading" | "top-left" | "top-right" | "top-trailing"
- Attribute
- position
- Default value
- "bottom-left"
referenceElement
referenceElement: ArcgisLinkChart | ArcgisMap | ArcgisScene | string
- Attribute
- reference-element
referencePoint
referencePoint: Point
This property provides the location of an image pixel in Map coordinates when using map-image conversion tool.
Methods
Method | Signature |
---|---|
componentOnReady(): Promise<void> | |
destroy(): Promise<void> |
componentOnReady
componentOnReady(): Promise<void>
Create a promise that resolves once component is fully loaded.
- Returns
- Promise<void>
Events
Event | Type |
---|---|
{ name: "layer" | "imageGalleryEnabled"; } | |
undefined |
arcgisPropertyChange
arcgisPropertyChange: { name: "layer" | "imageGalleryEnabled"; }
Emitted when the value of a property is changed. Use this to listen to changes to properties.
Events triggered on this element will be propagated to their outermost elements.
The event is composable and will propagate across the shadow DOM into the standard DOM.
The event's default behavior can be canceled, allowing for custom behavior to be implemented instead.
arcgisReady
arcgisReady: undefined
Emitted when the component associated with a map view is is ready to be interacted with.
Events triggered on this element will be propagated to their outermost elements.
The event is composable and will propagate across the shadow DOM into the standard DOM.
The event's default behavior can be canceled, allowing for custom behavior to be implemented instead.