PointOfInterest

Interface PointOfInterest

Defines an individual Point of Interest (POI).

interface PointOfInterest {
    id?: number;
    label?: string;
    position: [number, number, number];
}

Properties

Properties

id?: number

The unique identifier for the POI. Automatically assigned if not specified.

undefined
label?: string

Text to display next to the POI.

undefined
position: [number, number, number]

The 3D position of a POI.