Interface ReverseGeocodeResult

interface ReverseGeocodeResult {
    address: string;
    attributes: Record<string, null | string>;
    latitude: number;
    longitude: number;
}

Properties

address: string
attributes: Record<string, null | string>
latitude: number
longitude: number