This commit is contained in:
Xu Chang 2024-11-25 20:49:19 +08:00
parent f13906fd18
commit eec4f32545
2 changed files with 8 additions and 2 deletions

View File

@ -5,7 +5,10 @@ export default class MapWorld implements MapService {
regeo(params: {
latitude: number;
longitude: number;
}): Promise<any>;
}): Promise<{
poiName: string;
areaId: string;
}>;
geo(params: {
name: string;
areaId?: string;

View File

@ -5,7 +5,10 @@ export default class MapWorld implements MapService {
regeo(params: {
latitude: number;
longitude: number;
}): Promise<any>;
}): Promise<{
poiName: string;
areaId: string;
}>;
geo(params: {
name: string;
areaId?: string;