用Java实现通过调用百度地图API,实现查找地点经纬度和范围的功能。
百度地图地点搜索接口需要认证,且有访问限制:每天只能访问50万次。
GeofencingDialog dialog = new GeofencingDialog();
dialog.setVisible(true); //显示对话框
String radius = dialog.getRadiusStr(); //获取半径
String location = dialog.getLocationStr(); //获取经纬度
https://github.com/heqiao2010/FindLocation
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/he_qiao/article/details/47298167