123456789101112131415161718192021222324252627 |
- export interface LocateOnMapParams {
- latitude?: number;
- longitude?: number;
- scope?: number;
- }
- export interface GeolocationResult {
- province?: string;
- provinceCode?: string;
- city?: string;
- cityCode?: string;
- adName?: string;
- adCode?: string;
- distance?: string;
- postCode?: string;
- snippet?: string;
- title: string;
- latitude: number;
- longitude: number;
- }
- declare function locateOnMap(args: LocateOnMapParams): Promise<GeolocationResult>;
- declare namespace locateOnMap {
- var version: {
- android: string;
- ios: string;
- };
- }
- export default locateOnMap;
|