集成百度地图API实现定位

2020-12-13 03:14

阅读:486

mSearch = new MKSearch();

 mSearch.init(mapManagernew MKSearchListener() {

 

public void onGetAddrResult(MKAddrInfo res, int error) {

if (error != 0) {

String str = String.format("错误号:%d", error);

Toast.makeText(GetMyLocation.context,str,

                    Toast.LENGTH_LONG).show();

return;

}

if (res.type == MKAddrInfo.MK_REVERSEGEOCODE){

//反地理编码:通过坐标点检索详细地址及周边poi

localname = res.strAddr;

}

}

          。 。 。 。 。 。


评论


亲,登录后才可以留言!