以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 百度API调用的经纬度和实际GPS存在的误差,怎样解决? (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=30252) |
-- 作者:qctv -- 发布时间:2013/3/24 6:03:00 -- 百度API调用的经纬度和实际GPS存在的误差,怎样解决? 百度API调用的经纬度和实际GPS存在的误差,原因是百度的坐标二次加密了,需要转换。 http://www.docin.com/p-308631193.html http://hunray.iteye.com/blog/1404129 下面是一段网页源码,是转换GPS为百度坐标的,求怎么改为狐表代码运用
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" c /> <style type="text/css"> body, html,#allmap {width: 100%;height: 100%;overflow: hidden;margin:0;} #l-map{height:100%;width:78%;float:left;border-right:2px solid #bcbcbc;} #r-result{height:100%;width:20%;float:left;} </style> <script type="text/javascript" src="http://api.map.baidu.com/api?v=1.4"></script> <script type="text/javascript" src="http://developer.baidu.com/map/jsdemo/demo/convertor.js"></script> <title>GPS转百度</title> </head> <body> <div id="allmap"></div> </body> </html> <script type="text/javascript"> //GPS坐标 var xx = 115.439365 ; var yy = 30.242607; var gpsPoint = new BMap.Point(xx,yy); //地图初始化 var bm = new BMap.Map("allmap"); bm.centerAndZoom(gpsPoint, 15); bm.addControl(new BMap.NavigationControl()); //添加谷歌marker和label var markergps = new BMap.Marker(gpsPoint); bm.addOverlay(markergps); //添加GPS标注 var labelgps = new BMap.Label("GPS",{offset:new BMap.Size(20,-10)}); markergps.setLabel(labelgps); //添加GPS标注 //坐标转换完之后的回调函数 translateCallback = function (point){ var marker = new BMap.Marker(point); bm.addOverlay(marker); var label = new BMap.Label("实际坐标",{offset:new BMap.Size(20,-10)}); marker.setLabel(label); //添加百度label bm.setCenter(point); alert(point.lng + "," + point.lat); } setTimeout(function(){ BMap.Convertor.translate(gpsPoint,0,translateCallback); //真实经纬度转成百度坐标 }, 2000); </script> [此贴子已经被作者于2013-3-24 6:16:57编辑过]
|
-- 作者:sgs -- 发布时间:2013/3/24 16:44:00 -- 这个不懂,帮顶 |
-- 作者:hanxuntx -- 发布时间:2013/3/24 18:07:00 -- 没办法解决,因为gps信号本来是可以精确到毫米的,但是美国出于国家安全的考虑,对信号进行了偏差处理,所以gps信号的精度在100m以下,有些机器可以通过纠偏算法使进度达到3m。 有些gps的地图,根据我国法律也有设置了偏差。 |
-- 作者:playmal -- 发布时间:2020/7/24 20:21:00 -- 这个误差很大吗? |