地点详情 load 事件抛出的数据 仅包含约定字段,便于业务使用。

interface PlaceDetailEventData {
    title: string;
    address: string;
    uid?: string;
    point?: {
        lng: number;
        lat: number;
    };
    tel?: string;
}

Properties

title: string

名称/标题

address: string

地址

uid?: string

地点唯一标识

point?: {
    lng: number;
    lat: number;
}

坐标 { lng, lat }

tel?: string

电话