KmlTour

A KML Tour object. KML Tour is an executed Playlist commands.

Since

200.1.0

Properties

Link copied to clipboard
val status: StateFlow<KmlTourStatus>

The KML tour's status.

Inherited properties

Link copied to clipboard

The address of the KML node. Represents an unstructured address such as a street, city, state address, and/or a postal code.

Link copied to clipboard

The color to be used for the KML node balloon. A color mask that can be used to color the balloon of a KML node. This color can be used for the UI "chrome" that presents the KmlNode.balloonContent, such as the background color of a callout.

Link copied to clipboard

The balloon content that should be displayed in a balloon popup for the KML node. The provided HTML is suitable for display in a web view.

Link copied to clipboard

The description of the KML node.

Link copied to clipboard

The extent for the KML node.

Link copied to clipboard

The KML node's highlight style. This style is used when the KML node has been highlighted / selected.

Link copied to clipboard
var id: String

The ID of the KML node. The ID is a standard XML ID and can be empty.

Link copied to clipboard

A flag indicating if the KML node is highlighted. Highlights the node if is_highlighted is true, unhighlights it otherwise. All of the connected map views will be updated. This controls whether the default style or an alternate 'highlighted' style (if present) is used for rendering the node. This is unrelated to the concept of selection in this API.

Link copied to clipboard

A flag indicating if the KML node is visible. Makes the node visible if is_visible is true, hides it otherwise. All of the connected map views will be updated. In order for a node to be visible, all of its ancestors must also be visible. Changing the visibility of one node may affect visibility of other nodes in the dataset hierarchy, such as child nodes.

Link copied to clipboard

The name of the KML node.

Link copied to clipboard

The KML node's parent.

Link copied to clipboard

The KML node's refresh status. Use the node refresh status to update the node's properties and update application UI.

Link copied to clipboard

The KML node's snippet. Snippets can be defined for KML nodes as an additional short description for UI display. If no snippet is specified, you can take the first few lines of the KmlNode.description. The maximum number of lines to display is specified by the KmlNode.snippetMaxLines property.

Link copied to clipboard

The maximum number of lines of snippet to be shown in the UI.

Link copied to clipboard

The KML node's style.

Link copied to clipboard

The KML node's time extent. Represents the TimeExtent equivalent of a KML node's TimeStamp[https://docs.opengeospatial.org/is/12-007r2/12-007r2.html#1168] or https://docs.opengeospatial.org/is/12-007r2/12-007r2.html#1181. A KmlContainer node such as KmlDocument or KmlFolder may have its own TimeExtent independent of its child nodes. All KML TimeStamps and TimeSpans specified in a KML/KMZ file are converted to their UTC TimeExtent equivalents.

Link copied to clipboard

The UX icon of a KML node. Use this icon to represent the KML node in the TOC or list item or any UI element.

Link copied to clipboard

The color mask used to tint the node's icon. A color mask that can be used to blend the image associated with the KML node. Pixels in the image are multiplied by this color channel-by-channel. Colors in KML are specified in ABGR order. When no UX icon is specified, you can use this color to draw a placeholder for use in the UI (for example, a legend). UX icons are not pre-tinted; it is the application's responsibility to apply the tint color to the UX icon before displaying it.

Link copied to clipboard

The UX icon id. The icon id associate with KML node.

Link copied to clipboard

The KML node's viewpoint. The KML viewpoint is the specified vantage point for looking at the node. This can be used to zoom to a node (for example, if a user selected it in a TOC).

Inherited functions

Link copied to clipboard
suspend fun saveAs(filePath: String): Result<Unit>

Saves the node and any referenced local files into a zipped KMZ archive. The node will be saved to a KMZ file to ensure that any referenced files are available locally when sharing the file with others. If this method is called on a leaf node (e.g. KMLPlacemark, KMLGroundOverlay, etc), only that node and its referenced files will be saved. If this method is called on container node (e.g. KMLDocument, KMLFolder), the node and all of its children and referenced files will be saved. If this method is called on a KMLNetworkLink, the link will be saved but the children will not. This is because the children will simply be refetched when the saved KMLNetworkLink is loaded. Saving referenced files will differ based on the type of reference. For HTTP paths, the path will be saved as is but the referenced file will not be zipped into the archive, as it will simply be refetched when the new KMZ is loaded. For relative paths, the path will be saved as is and the referenced file will be zipped relative to the root of the KMZ file. For absolute paths, the path will be converted to a relative path, and the referenced file will be zipped into a "files" folder at the root of the KMZ file. For example, "C:/icons/some_icon.png" would be converted to "files/some_icon.png" and stored at that location in the KMZ file. The filename supports unicode characters as well as nested directories. It must be non-empty and there must not be an existing file located there. Saving a node to a KMZ file requires an ArcGIS Runtime 'Standard' license level.