谷歌地图偏移解决:
据网上的说法,谷歌地图在某个区域内的偏移量是一致的,一般以城市为单位。所以我们可以采用如下方法减小偏移:将每个城市的偏移量存储起来,在根据当前所在城市去获取当前的偏移量,然后修正即可。比如在数据库中建立一张地区表,里面包含偏移量字段。然后在内存中建立一个Map缓存,每次要取经纬度时都根据城市名称去Map中查找相应偏移量,如果不存在则去数据库中查找,再保存在Map中,然后利用这个偏移量修正当前的经纬度。
百度地图偏移解决:
———————————————————–以下转载自ITEYE,原文请参考http://funnydavid.iteye.com/blog/938806———————————————
package tools;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.URL;
import java.net.URLConnection;
import com.sun.org.apache.xerces.internal.impl.dv.util.Base64;
public class BaiduAPIConverter {
public static void testPost(String x, String y) throws IOException {
URL url = new URL(
“http://api.map.baidu.com/ag/coord/convert?from=0&to=4&x=” + x
+ “&y=” + y);
URLConnection connection = url.openConnection();
/**
* 然后把连接设为输出模式。URLConnection通常作为输入来使用,比如下载一个Web页。
* 通过把URLConnection设为输出,你可以把数据向你个Web页传送。下面是如何做:
*/
connection.setDoOutput(true);
OutputStreamWriter out = new OutputStreamWriter(connection
.getOutputStream(), “utf-8”);
// remember to clean up
out.flush();
out.close();
// 一旦发送成功,用以下方法就可以得到服务器的回应:
String sCurrentLine;
String sTotalString;
sCurrentLine = “”;
sTotalString = “”;
InputStream l_urlStream;
l_urlStream = connection.getInputStream();
BufferedReader l_reader = new BufferedReader(new InputStreamReader(
l_urlStream));
while ((sCurrentLine = l_reader.readLine()) != null) {
if (!sCurrentLine.equals(“”))
sTotalString += sCurrentLine;
}
System.out.println(sTotalString);
sTotalString = sTotalString.substring(1, sTotalString.length()-1);
System.out.println(sTotalString);
String[] results = sTotalString.split(“\\,”);
if (results.length == 3){
if (results[0].split(“\\:”)[1].equals(“0”)){
String mapX = results[1].split(“\\:”)[1];
String mapY = results[2].split(“\\:”)[1];
mapX = mapX.substring(1, mapX.length()-1);
mapY = mapY.substring(1, mapY.length()-1);
mapX = new String(Base64.decode(mapX));
mapY = new String(Base64.decode(mapY));
System.out.println(mapX);
System.out.println(mapY);
}
}
}
public static void main(String[] args) throws IOException {
testPost(“116.31500244140287”, “40.006434917448786”);
}
}