提交 f12fdab1 authored 作者: 袁静春's avatar 袁静春

提交:处理解析数据错误问题;

上级 4215f538
...@@ -28,7 +28,7 @@ class MethodChannelClxMapPoiSearch extends ClxMapPoiSearchPlatform { ...@@ -28,7 +28,7 @@ class MethodChannelClxMapPoiSearch extends ClxMapPoiSearchPlatform {
var searchPOIResult = await methodChannel.invokeMethod<dynamic>('searchPOI#keywords', <String, dynamic>{ var searchPOIResult = await methodChannel.invokeMethod<dynamic>('searchPOI#keywords', <String, dynamic>{
'keywords': keywords, 'keywords': keywords,
}); });
return PoiResult.toPoiResult(searchPOIResult); return PoiResult.toPoiResult(searchPOIResult["searchPOIResult"]);
} }
// 周边搜索 // 周边搜索
...@@ -38,10 +38,11 @@ class MethodChannelClxMapPoiSearch extends ClxMapPoiSearchPlatform { ...@@ -38,10 +38,11 @@ class MethodChannelClxMapPoiSearch extends ClxMapPoiSearchPlatform {
'latitude': latitude, 'latitude': latitude,
'longitude': longitude, 'longitude': longitude,
}); });
return PoiResult.toPoiResult(searchPOIResult); return PoiResult.toPoiResult(searchPOIResult["searchPOIResult"]);
} }
/// 周边搜索 /// 周边搜索
@override
Future<PoiResult?> aroundSearchAll(String keywords, double latitude, double longitude, String city) async { Future<PoiResult?> aroundSearchAll(String keywords, double latitude, double longitude, String city) async {
var searchPOIResult = await methodChannel.invokeMethod<dynamic>('searchPOI#around#all', <String, dynamic>{ var searchPOIResult = await methodChannel.invokeMethod<dynamic>('searchPOI#around#all', <String, dynamic>{
'keywords': keywords, 'keywords': keywords,
...@@ -49,7 +50,7 @@ class MethodChannelClxMapPoiSearch extends ClxMapPoiSearchPlatform { ...@@ -49,7 +50,7 @@ class MethodChannelClxMapPoiSearch extends ClxMapPoiSearchPlatform {
'longitude': longitude, 'longitude': longitude,
'city': city, 'city': city,
}); });
return PoiResult.toPoiResult(searchPOIResult); return PoiResult.toPoiResult(searchPOIResult["searchPOIResult"]);
} }
} }
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论