/**
 * Address location
 * 地理位置
 */
export type AddressLocation = {
  /**
   * Latitude, 纬度
   */
  lat: number;

  /**
   * Longitude, 经度
   */
  lng: number;
};
