Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
clx_map_poi_search
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
clx_map_poi_search
Commits
403fe0bf
提交
403fe0bf
authored
12月 09, 2022
作者:
shixiaochen
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
1、增加distance
上级
011c4629
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
67 行增加
和
71 行删除
+67
-71
Utils.kt
android/src/main/kotlin/com/clx/clx_map_poi_search/Utils.kt
+67
-71
没有找到文件。
android/src/main/kotlin/com/clx/clx_map_poi_search/Utils.kt
浏览文件 @
403fe0bf
package
com.clx.clx_map_poi_search
;
package
com.clx.clx_map_poi_search
import
android.util.Log;
import
com.amap.api.services.core.AMapException;
import
com.amap.api.services.core.PoiItem;
import
com.amap.api.services.geocoder.RegeocodeAddress;
import
com.amap.api.services.geocoder.RegeocodeResult;
import
com.amap.api.services.help.Tip;
import
com.amap.api.services.poisearch.PoiResult;
import
java.util.ArrayList;
import
java.util.HashMap;
import
java.util.List;
import
java.util.Map;
import
android.util.Log
import
com.amap.api.services.poisearch.PoiResult
import
com.amap.api.services.core.AMapException
import
com.amap.api.services.core.PoiItem
import
com.amap.api.services.help.Tip
import
com.amap.api.services.geocoder.RegeocodeResult
import
com.amap.api.services.geocoder.RegeocodeAddress
import
java.util.ArrayList
import
java.util.HashMap
/**
* @Author : shixiaochen
* @Time : 2022/4/15
* @Description :
*/
public
class
Utils
{
object
Utils
{
/**
* poi搜索 数据
*
...
...
@@ -28,29 +23,30 @@ public class Utils {
* @param code 响应码
* @return 返回数据
*/
public
static
List
<
Map
<
String
,
Object
>>
buildSearchResultList
(
PoiResult
poiResult
,
int
code
)
{
List
<
Map
<
String
,
Object
>>
result
=
new
ArrayList
<>();
fun
buildSearchResultList
(
poiResult
:
PoiResult
,
code
:
Int
):
List
<
Map
<
String
,
Any
>>
{
val
result
:
MutableList
<
Map
<
String
,
Any
>>
=
ArrayList
()
if
(
code
==
AMapException
.
CODE_AMAP_SUCCESS
)
{
ArrayList
<
PoiItem
>
list
=
poiResult
.
getPois
();
Log
.
d
(
Constants
.
TAG
,
"buildSearchResultList: list =
"
+
list
);
val
list
=
poiResult
.
pois
Log
.
d
(
Constants
.
TAG
,
"buildSearchResultList: list =
$list"
)
if
(
list
!=
null
)
{
for
(
PoiItem
poiItem
:
list
)
{
HashMap
<
String
,
Object
>
map
=
new
HashMap
<>();
map
.
put
(
"latitude"
,
poiItem
.
getLatLonPoint
().
getLatitude
());
map
.
put
(
"longitude"
,
poiItem
.
getLatLonPoint
().
getLongitude
());
map
.
put
(
"provinceName"
,
poiItem
.
getProvinceName
());
map
.
put
(
"provinceCode"
,
poiItem
.
getProvinceCode
());
map
.
put
(
"cityName"
,
poiItem
.
getCityName
());
map
.
put
(
"cityCode"
,
poiItem
.
getCityCode
());
map
.
put
(
"adName"
,
poiItem
.
getAdName
());
map
.
put
(
"businessArea"
,
poiItem
.
getBusinessArea
());
map
.
put
(
"snippet"
,
poiItem
.
getSnippet
());
map
.
put
(
"title"
,
poiItem
.
getTitle
());
result
.
add
(
map
);
for
(
poiItem
in
list
)
{
val
map
=
HashMap
<
String
,
Any
>()
map
[
"latitude"
]
=
poiItem
.
latLonPoint
.
latitude
map
[
"longitude"
]
=
poiItem
.
latLonPoint
.
longitude
map
[
"provinceName"
]
=
poiItem
.
provinceName
map
[
"provinceCode"
]
=
poiItem
.
provinceCode
map
[
"cityName"
]
=
poiItem
.
cityName
map
[
"cityCode"
]
=
poiItem
.
cityCode
map
[
"adName"
]
=
poiItem
.
adName
map
[
"businessArea"
]
=
poiItem
.
businessArea
map
[
"snippet"
]
=
poiItem
.
snippet
map
[
"title"
]
=
poiItem
.
title
map
[
"distance"
]
=
poiItem
.
distance
result
.
add
(
map
)
}
}
}
return
result
;
return
result
}
/**
...
...
@@ -60,31 +56,31 @@ public class Utils {
* @param code 响应码
* @return 返回数据
*/
public
static
List
<
Map
<
String
,
Object
>>
buildSearchInputResultList
(
List
<
Tip
>
list
,
int
code
)
{
List
<
Map
<
String
,
Object
>>
result
=
new
ArrayList
<>();
fun
buildSearchInputResultList
(
list
:
List
<
Tip
>?,
code
:
Int
):
List
<
Map
<
String
,
Any
?>>
{
val
result
:
MutableList
<
Map
<
String
,
Any
?>>
=
ArrayList
()
if
(
code
==
AMapException
.
CODE_AMAP_SUCCESS
)
{
Log
.
d
(
"TAG"
,
"buildSearchResultList: list =
"
+
list
);
Log
.
d
(
"TAG"
,
"buildSearchResultList: list =
$list"
)
if
(
list
!=
null
)
{
for
(
Tip
tip
:
list
)
{
HashMap
<
String
,
Object
>
map
=
new
HashMap
<>();
map
.
put
(
"name"
,
tip
.
getName
());
map
.
put
(
"address"
,
tip
.
getAddress
());
map
.
put
(
"adCode"
,
tip
.
getAdcode
());
map
.
put
(
"district"
,
tip
.
getDistrict
());
map
.
put
(
"poiID"
,
tip
.
getPoiID
());
map
.
put
(
"typeCode"
,
tip
.
getTypeCode
());
if
(
tip
.
getPoint
()
!=
null
)
{
map
.
put
(
"latitude"
,
tip
.
getPoint
().
getLatitude
());
map
.
put
(
"longitude"
,
tip
.
getPoint
().
getLongitude
());
for
(
tip
in
list
)
{
val
map
=
HashMap
<
String
,
Any
?>()
map
[
"name"
]
=
tip
.
name
map
[
"address"
]
=
tip
.
address
map
[
"adCode"
]
=
tip
.
adcode
map
[
"district"
]
=
tip
.
district
map
[
"poiID"
]
=
tip
.
poiID
map
[
"typeCode"
]
=
tip
.
typeCode
if
(
tip
.
point
!=
null
)
{
map
[
"latitude"
]
=
tip
.
point
.
latitude
map
[
"longitude"
]
=
tip
.
point
.
longitude
}
else
{
map
.
put
(
"latitude"
,
null
);
map
.
put
(
"longitude"
,
null
);
map
[
"latitude"
]
=
null
map
[
"longitude"
]
=
null
}
result
.
add
(
map
)
;
result
.
add
(
map
)
}
}
}
return
result
;
return
result
}
/**
...
...
@@ -94,25 +90,24 @@ public class Utils {
* @param code 响应码
* @return 返回数据
*/
public
static
Map
<
String
,
Object
>
buildSearchRegeocodeResultList
(
RegeocodeResult
regeocode
,
int
code
)
{
Map
<
String
,
Object
>
result
=
new
HashMap
<>();
fun
buildSearchRegeocodeResultList
(
regeocode
:
RegeocodeResult
?,
code
:
Int
):
Map
<
String
,
Any
>
{
val
result
:
MutableMap
<
String
,
Any
>
=
HashMap
()
if
(
code
==
AMapException
.
CODE_AMAP_SUCCESS
)
{
if
(
regeocode
!=
null
&&
regeocode
.
getRegeocodeAddress
()
!=
null
)
{
RegeocodeAddress
address
=
regeocode
.
getRegeocodeAddress
();
result
.
put
(
"province"
,
address
.
getProvince
());
result
.
put
(
"city"
,
address
.
getCity
());
result
.
put
(
"town"
,
address
.
getTownship
());
result
.
put
(
"street"
,
address
.
getBuilding
());
result
.
put
(
"district"
,
address
.
getDistrict
());
result
.
put
(
"address"
,
address
.
getFormatAddress
());
result
.
put
(
"adCode"
,
address
.
getAdCode
());
result
.
put
(
"cityCode"
,
address
.
getCityCode
());
result
.
put
(
"country"
,
address
.
getCountry
());
result
.
put
(
"neighborhood"
,
address
.
getNeighborhood
());
result
.
put
(
"townCode"
,
address
.
getTowncode
());
}
if
(
regeocode
!=
null
&&
regeocode
.
regeocodeAddress
!=
null
)
{
val
address
=
regeocode
.
regeocodeAddress
result
[
"province"
]
=
address
.
province
result
[
"city"
]
=
address
.
city
result
[
"town"
]
=
address
.
township
result
[
"street"
]
=
address
.
building
result
[
"district"
]
=
address
.
district
result
[
"address"
]
=
address
.
formatAddress
result
[
"adCode"
]
=
address
.
adCode
result
[
"cityCode"
]
=
address
.
cityCode
result
[
"country"
]
=
address
.
country
result
[
"neighborhood"
]
=
address
.
neighborhood
result
[
"townCode"
]
=
address
.
towncode
}
}
return
result
;
return
result
}
}
}
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论