【Android LBS 百度地图(参考( 《第一行代码》第二版(郭霖著)11.3.4 显示看得懂的定位信息:准确文字地址))】古人已用三冬足,年少今开万卷余。这篇文章主要讲述Android LBS 百度地图(参考: 《第一行代码》第二版(郭霖著)11.3.4 显示看得懂的定位信息:准确文字地址)相关的知识,希望能为你提供帮助。
经纬度不能直接转换为人的准确认知,需要显示文字信息。
currentPosition.append("地址:").append(location.getAddrStr()).append("\\n"); Log.d("map Address",location.getAddrStr()+""); currentPosition.append("国家:").append(location.getCountry()).append("\\n"); Log.d("map Coutntry",location.getCountry()+""); currentPosition.append("省:").append(location.getProvince()).append("\\n"); currentPosition.append("市:").append(location.getCity()).append("\\n"); currentPosition.append("区:").append(location.getDistrict()).append("\\n"); currentPosition.append("街道:").append(location.getStreet()).append("\\n");
很实用有趣的功能,容易激发学习兴趣。
文章图片
推荐阅读
- AutoMapper完成Dto与Model的转换
- web服务启动spring自己主动运行ApplicationListener的使用方法
- 电商APP制作,平台选的好流量自然少不了
- Django打造在线教育平台_day_2(新建users app 编写models之完善)
- Android 程序打包及签名
- 高速改动android系统默认日期方法
- Vue-router结合transition实现app前进后退动画切换效果
- 2017最新xcode打包APP详细图文
- 扯谈spring mvc之WebApplicationContext的继承关系