/**
 * Place location
 * 地点位置
 */
export type PlaceLocation = {
    /**
     * Latitude, 纬度
     */
    Lat: number;
    /**
     * Longitude, 经度
     */
    Lng: number;
};
