Android高德地图poi检索仿微信发送位置实例代码
程序员文章站
2022-04-18 18:37:27
最近项目需求把发送定位模块改成类似微信发送位置给好友的效果,我使用了高德地图实现了一个demo,效果图如下:
从主界面中我们可以看到中心标记上面显示的就是我们定位的地...
最近项目需求把发送定位模块改成类似微信发送位置给好友的效果,我使用了高德地图实现了一个demo,效果图如下:
从主界面中我们可以看到中心标记上面显示的就是我们定位的地址,下面是一个listview列表,第一条item的数据就是我们定位得到的地址,下面其余的都是我们根据定位得到的经纬度通过poi周边搜索得到的地址。我们进行了如下操作:
- 我们点击列表的item,中心标记会移动到该item对象的地址上面去。
- 我们手动移动地图的时候,中心标记的地址会发生相应的变化并且下面的列表也会发生相应的变化。
- 根据关键字poi搜索得到的列表,然后点击item主界面立马进行更新操作。
这里贴出主要代码,首先我们进行地图地位初始化操作:
@override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_map); mapview.oncreate(savedinstancestate);// 此方法必须重写 if (amap == null) { amap = mapview.getmap(); // 自定义系统定位小蓝点 mylocationstyle mylocationstyle = new mylocationstyle(); // 设置小蓝点的图标 mylocationstyle.mylocationicon(bitmapdescriptorfactory. fromresource(r.mipmap.ic_location_marker));// 设置小蓝点的图标 mylocationstyle.strokecolor(0x7f0070d9);// 设置圆形的边框颜色 mylocationstyle.radiusfillcolor(0x130070d9);// 设置圆形的填充颜色 // mylocationstyle.anchor(int,int)//设置小蓝点的锚点 mylocationstyle.strokewidth(1.0f);// 设置圆形的边框粗细 amap.setmylocationstyle(mylocationstyle); amap.setlocationsource(this);// 设置定位监听(1) amap.setoncamerachangelistener(this);//手动移动地图监听 (2) amap.getuisettings().setmylocationbuttonenabled(true);// 设置默认定位按钮是否显示 //设置为true表示显示定位层并可触发定位,false表示隐藏定位层并不可触发定位,默认是false amap.setmylocationenabled(true); amap.movecamera(cameraupdatefactory.zoomto(17.5f)); } //------------------------------------------添加中心标记 mmarkeroptions = new markeroptions(); mmarkeroptions.draggable(false);//可拖放性 mmarkeroptions.icon(bitmapdescriptorfactory.fromresource(r.mipmap.ic_tips_nearby)); mcentermarker = amap.addmarker(mmarkeroptions); viewtreeobserver vto = mapview.getviewtreeobserver(); vto.addongloballayoutlistener(new viewtreeobserver.ongloballayoutlistener() { @override public void ongloballayout() { mapview.getviewtreeobserver().removeglobalonlayoutlistener(this); mcentermarker.setpositionbypixels(mapview.getwidth() >> 1, mapview.getheight() >> 1); mcentermarker.showinfowindow(); } }); //---------------------------------------------初始化正反编码类 (3) mgeocodersearch = new geocodesearch(this); mgeocodersearch.setongeocodesearchlistener(this); }
我们注意重点关注在上面的三个监听回调,1处是定位监听,有以下两个回调方法:
//-----------------地图定位回调 //激活定位 @override public void activate(onlocationchangedlistener onlocationchangedlistener) { mlistener = onlocationchangedlistener; if (mlocationclient == null) { mlocationclient = new amaplocationclient(this); mlocationoption = new amaplocationclientoption(); //设置定位监听 mlocationclient.setlocationlistener(this);(4) //设置为高精度定位模式 mlocationoption.setlocationmode(amaplocationclientoption.amaplocationmode.hight_accuracy); //设置定位参数 mlocationclient.setlocationoption(mlocationoption); // 此方法为每隔固定时间会发起一次定位请求,为了减少电量消耗或网络流量消耗, // 注意设置合适的定位时间的间隔(最小间隔支持为2000ms),并且在合适时间调用stoplocation() // 方法来取消定位请求 // 在定位结束后,在合适的生命周期调用ondestroy()方法 // 在单次定位情况下,定位无论成功与否,都无需调用stoplocation()方法移除请求,定位sdk内部会移除 mlocationclient.startlocation(); } } //停止定位 @override public void deactivate() { mlistener = null; if (mlocationclient != null) { mlocationclient.stoplocation(); mlocationclient.ondestroy(); } mlocationclient = null; }
4处的监听定位成功后会回调onlocationchanged这个方法,在这个方法里面我们可以获得定位到的经纬读,地址,显示出上面我们设置的自定义系统定位小蓝点出来等等,
@override public void onlocationchanged(amaplocation amaplocation) { //这个方法会循环执行 mlongitude = amaplocation.getlongitude();//经度 mlatitude = amaplocation.getlatitude();//纬度 citycode = amaplocation.getcitycode();//citycode }
我们再来分析2处地图位置改变时回调:
@override public void oncamerachange(cameraposition cameraposition) { } @override public void oncamerachangefinish(cameraposition cameraposition) { /**这个方法很重要,虽然在上述的onlocationchanged方法我们也能获得坐标点的信息但是我们 通常在这里获得定位坐标的经纬度,获得了经纬度后我们并不能知道该坐标点的具体坐标信息,所以 需要把对应的坐标点转化为具体地址,这就是所谓的同步逆地理编码请求,和定位是黄金搭档 */ mcurrentpoint = new latlonpoint(cameraposition.target. latitude, cameraposition.target.longitude); // 第一个参数表示一个latlng,第二参数表示范围多少米,第三个参数表示是火系坐标系还是gps原生坐标系 regeocodequery query = new regeocodequery(mcurrentpoint, 200, geocodesearch.amap); mgeocodersearch.getfromlocationasyn(query);// 设置同步逆地理编码请求 }
3处我们做的地理正反编码回调如下:
//----------------逆地址编码回调:坐标->地址 @override public void onregeocodesearched(regeocoderesult result, int rcode) { if (rcode == 0) { if (result != null && result.getregeocodeaddress() != null && result.getregeocodeaddress().getformataddress() != null) { /** * 汽车服务|汽车销售|汽车维修|摩托车服务|餐饮服务|购物服务|生活服务| * 体育休闲服务|医疗保健服务|住宿服务|风景名胜|商务住宅|*机构及社会团体 * |科教文化服务|交通设施服务|金融保险服务|公司企业|道路附属设施|地名地址信息|公共设施 */ mpoiquery = new poisearch.query("", "住宿服务|公司企业", result.getregeocodeaddress().getcitycode()); mpoiquery.setpagesize(10);// 设置每页最多返回多少条poiitem mpoiquery.setpagenum(0);//设置查第一页 poisearch poisearch = new poisearch(this, mpoiquery); poisearch.setonpoisearchlistener(this);//设置数据返回的监听器 (5) //设置周边搜索的中心点以及区域 poisearch.setbound(new poisearch.searchbound(mcurrentpoint, 1500, true)); poisearch.searchpoiasyn();//开始搜索 } else { toastutil.show(mcontext, r.string.no_result); } } else { toastutil.show(mcontexts, rcode); } } //----------------地址编码回调:地址->坐标 @override public void ongeocodesearched(geocoderesult geocoderesult, int rcode) { }
我们在这儿进行了poi周边搜索操作,回调方法
@override public void onpoisearched(poiresult result, int rcode) { if (rcode == 0) { if (result != null && result.getquery() != null) {// 搜索poi的结果 if (result.getquery().equals(query)) {// 是否是同一条 poiitems = poiresult.getpois();// 取得第一页的poiitem数据,页数从数字0开始 // 当搜索不到poiitem数据时,会返回含有搜索关键字的城市信息 list<suggestioncity> suggestioncities = poiresult .getsearchsuggestioncitys(); /** * listviw具体操作逻辑 */ } } else if (suggestioncities != null && suggestioncities.size() > 0) { showsuggestcity(suggestioncities); }else { toastutil.show(mcontexts, "对不起,没有搜索到相关数据!"); } } } @override public void onpoiitemsearched(poiitem poiitem, int rcode) { } /** * poi没有搜索到数据,返回一些推荐城市的信息 */ private void showsuggestcity(list<suggestioncity> cities) { string infomation = "推荐城市\n"; for (int i = 0; i < cities.size(); i++) { infomation += "城市名称:" + cities.get(i).getcityname() + "城市区号:" + cities.get(i).getcitycode() + "城市编码:" + cities.get(i).getadcode() + "\n"; } toastutil.show(this, infomation); }
类似的含关键字的poi搜索也是类似的:
// 第一个参数表示搜索字符串,第二个参数表示poi搜索类型,第三个参数表示poi搜索区域(空字符串代表全国) mpoiquery = new poisearch.query(key, "", citycode); mpoisearch = new poisearch(this, mpoiquery); mpoiquery.setpagesize(15);// 设置每页最多返回多少条poiitem mpoiquery.setpagenum(0);//设置查第一页 mpoisearch.setonpoisearchlistener(this); // 设置搜索区域为以lp点为圆心,其周围5000米范围 latlonpoint lp=new latlonpoint(latitude,longitude); mpoisearch.setbound(new poisearch.searchbound(lp, 5000, true)); mpoisearch.searchpoiasyn();//开始搜索
最后还有一个知识点就是我们点击item的时候地图自动去移动的实现,其实就是amap.movecamera方法去实现的,它会自动调用oncamerachangefinish方法走的流程还是和我们手动拖动地图一样的。
复制代码 代码如下:
amap.movecamera(cameraupdatefactory.newlatlngzoom(new latlng(poiitem.getlatlonpoint().getlatitude(), poiitem.getlatlonpoint().getlongitude()), 20));
基本上就是这样了,至于一些细节方面自己去调节和优化吧,哪些问题都不大。以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。