62,266
社区成员
发帖
与我相关
我的任务
分享
//同步坐标
function synchronizationCoordinate() {
var url = "http://maps.google.com/maps/api/geocode/json?address=" + encodeURIComponent($('#<%= txtAddress.ClientID %>').val()) + "&sensor=false" + "&randomNum=" + Math.random();
$.ajax({
url: url,
dataType: 'json',
success: function(data) {
if (data.status == 'OK') {
//经度
$('#<%= txtLongitude.ClientID %>').val(data.results[0].geometry.location.lng);
//纬度
$('#<%= txtLatitude.ClientID %>').val(data.results[0].geometry.location.lat);
}
else {
alert("没找到你要查询的位置,请重新输入!");
}
},
error: function() {
alert("网络繁忙,请重试!");
}
});
}
/**
* 根据地址返回经纬度
* @param addr
* @return 返回经纬度数据, latLng[0]经度,latLng[1]维度
*/
public static String[] getCoordinate(String addr) {
String[] latLng = new String[2];
String address = null;
try {
address = java.net.URLEncoder.encode(addr, "UTF-8");
} catch (UnsupportedEncodingException e1) {
e1.printStackTrace();
}
;
String output = "csv";
//密钥可以随便写一个key=abc
String key = "abc";
String url = "http://maps.google.com/maps/geo?q=" + address + "&output=" + output + "&key=" + key;
URL googleMapURL = null;
URLConnection httpsConn = null;
// 进行转码
try {
googleMapURL = new URL(url);
} catch (MalformedURLException e) {
e.printStackTrace();
}
try {
httpsConn = (URLConnection)googleMapURL.openConnection();
if (httpsConn != null) {
InputStreamReader insr = new InputStreamReader(httpsConn.getInputStream(), "UTF-8");
BufferedReader br = new BufferedReader(insr);
String data = null;
if ((data = br.readLine()) != null) {
String[] retList = data.split(",");
/*
* String latitude = retList[2]; String longitude =
* retList[3];
*
* System.out.println("纬度"+ latitude);
* System.out.println("经度"+ longitude);
*/
if (retList.length > 2 && ("200".equals(retList[0]))) {
latLng[0] = retList[2];
latLng[1] = retList[3];
}
}
insr.close();
}
} catch (IOException e) {
e.printStackTrace();
}
return latLng;
}