GasStationResponse의 pois의 gas poi 타입입니다.

interface IGasPoi {
    information: IGasInformation;
    id: number;
    name: string;
    subName?: string;
    branch?: string;
    address: IAddressSouthKorea;
    category: ICategory;
    point: IPoint;
    direction: number;
    distance: number;
    phones: IPhones;
    children: {
        id: number;
        name: string;
        subName: string;
        branch: string;
        address: IAddressSouthKorea;
        category: ICategory;
        point: IPoint;
    };
    routeOptimization?: {
        [index: string]: IPoint[];
    };
}

Hierarchy

  • Omit<IPoi, "theme" | "extension" | "matched">
    • IGasPoi

Properties

information: IGasInformation

주유소 정보

id: number

POI의 ID

name: string

POI의 이름

subName?: string

POI의 서브이름. POI가 지하철역이나 기차역일 때 건물 이름, 노선, 출구와 같은 정보입니다.

branch?: string

POI의 영업점 정보

주소

category: ICategory

POI의 카테고리 정보. 카테고리의 코드를 검색하고 싶으면 CategoryList를 사용해주세요

point: IPoint

POI의 위치 포인트 좌표

direction: number

point좌표와 POI 위치 사이의 방위각

distance: number

point좌표와 POI 위치 사이의 거리

phones: IPhones

POI의 전화번호

children: {
    id: number;
    name: string;
    subName: string;
    branch: string;
    address: IAddressSouthKorea;
    category: ICategory;
    point: IPoint;
}
  • 현재 children은 지원하지 않습니다 * 하위 POI 리스트 정보

Type declaration

  • id: number

    children POI의 ID

  • name: string

    children POI의 이름

  • subName: string

    children POI의 서브이름

  • branch: string

    children POI의 영업점 정보

  • address: IAddressSouthKorea

    children POI의 주소

  • category: ICategory

    children POI의 카테고리 정보

  • point: IPoint

    children POI의 위치 포인트 좌표

routeOptimization?: {
    [index: string]: IPoint[];
}

request의 mode가 'NAVIGATION'이고 결과 POI가 여러개의 출입구를 가지고 있을 때 해당 결과가 존재합니다. multipleEntrance(출입구), multipleEntranceForWalking(도보 시 출입구), multipleEntranceForEmergency(응급 시 출입구) 값이 있습니다.

Type declaration

Generated using TypeDoc