Type Alias TCoordinateParams

TCoordinateParams: {
    floorId?: string;
    latitude: number;
    longitude: number;
    verticalOffset?: number;
}

Parameters for creating a Coordinate.

Used with the Coordinate constructor or MapView.createCoordinate method to create a coordinate on the map.

Type declaration

  • OptionalfloorId?: string

    Optional ID of the Floor this Coordinate is on.

  • latitude: number

    The latitude of the Coordinate.

  • longitude: number

    The longitude of the Coordinate.

  • OptionalverticalOffset?: number

    Optional vertical offset from the Floor in meters.