提交 403fe0bf authored 作者: shixiaochen's avatar shixiaochen

1、增加distance

上级 011c4629
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 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论