interface IDestination {
    direction: null | DIRECTION_EN_TYPE;
    distance: number | {
        [key: string]: any;
    };
    floorId: string;
    isDestination: boolean;
    move: ((map) => Promise<void>);
    poi: IPoi;
    position: null | IPosition;
    title?: string;
    transCode?: null | string;
}

Properties

direction: null | DIRECTION_EN_TYPE

현재 항목이후 우회전

distance: number | {
    [key: string]: any;
}

cm 단위로 이전 항목과의 거리

Type declaration

  • [key: string]: any
floorId: string

층 id

isDestination: boolean

이동경로 여부

move: ((map) => Promise<void>)

move() 함수

Type declaration

    • (map): Promise<void>
    • Parameters

      • map: any

      Returns Promise<void>

poi: IPoi

poi 데이터

position: null | IPosition

좌표 x,y,z

title?: string

poi title

transCode?: null | string

이동수단 코드