Interface RouteElementEntityInterface

Single route point. Contains associated metadata such as an attached instruction or associated site model entities.

interface RouteElementEntityInterface {
    distance: number;
    floor: SiteModelEntityInterface;
    location: Vector3;
    siteModelEntity: SiteModelEntityInterface;
}

Properties

distance: number

Distance between this element and the start of the route [m].

The SiteModelEntityInterface of type floor within which the route element is. undefined if the route element is not in a floor.

location: Vector3

Coordinate of the route element.

siteModelEntity: SiteModelEntityInterface

The most specific SiteModelEntityInterface of any type within which the route element lies. undefined if the route element is outside of the site model.

Generated using TypeDoc