TomTom Maps for JavaScript
    Preparing search index...

    Type Alias EntryPoint

    Entry point (entrance) for a place.

    Represents a physical access point to a building or facility, useful for routing to ensure users are directed to the correct entrance.

    const entryPoint: EntryPoint = {
    type: 'main',
    functions: ['FrontDoor'],
    position: [4.9041, 52.3676]
    };
    type EntryPoint = {
        functions?: string[];
        position: Position;
        type: EntryPointType;
    }
    Index

    Properties

    functions?: string[]

    Functional description of the entry point.

    Examples: 'FrontDoor', 'ServiceEntrance', 'ParkingGarage'

    position: Position

    Geographic coordinates of the entry point [longitude, latitude].

    Type of entry point (main or minor).