baidu舆图 交心
引进baiduapi<script src="http://api.map.百度.com/api必修v= 一. 四"大众type="text/javascript"></script>
var getLocation = function (successFunc, errorFunc) { //successFunc猎取定位胜利 归调函数,errorFunc猎取定位掉 败归调 //起首 设置默许乡市 var defCity = { id: '00000 一', name: '南京市', date: curDateTime()//猎取当前空儿要领 }; //默许乡市 $.cookie('VPIAO_MOBILE_DEFAULTCITY', JSON.stringify(defCity), { expires: 一, path: '/' }); if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(function (position) { var lat = position.coords.latitude; var lon = position.coords.longitude; //var map = new BMap.Map("container"); // 创立 Map真例 var point = new BMap.Point(lon, lat); // 创立 点立标 var gc = new BMap.Geocoder(); gc.getLocation(point, function (rs) { var addComp = rs.addressComponents; var curCity = { id: '', name: addComp.province, date: curDateTime() }; //当前定位乡市 $.cookie('VPIAO_MOBILE_CURRENTCITY', JSON.stringify(curCity), { expires: 七, path: '/' }); //alert(addComp.province + ", " + addComp.city + ", " + addComp.district + ", " + addComp.street); if (successFunc != undefined) successFunc(addComp); }); }, function (error) { switch (error.code) { case 一: alert("地位 办事 被谢绝 。"); break; case 二: alert("临时 猎取没有到地位 疑息。"); break; case 三: alert("猎取地位 疑息超时。"); break; default: alert("已知毛病 。"); break; } var curCity = { id: '00000 一', name: '南京市', date: curDateTime() }; //默许乡市 $.cookie('VPIAO_MOBILE_DEFAULTCITY', JSON.stringify(curCity), { expires: 一, path: '/' }); if (errorFunc != undefined) errorFunc(error); }, { timeout: 五000, enableHighAccuracy: true }); } else { alert("您的阅读 器没有支撑 猎取地舆 地位 疑息。"); if (errorFunc != undefined) errorFunc("您的阅读 器没有支撑 猎取地舆 地位 疑息。"); } }; var showPosition = function (position) { var lat = position.coords.latitude; var lon = position.coords.longitude; //var map = new BMap.Map("container"); // 创立 Map真例 var point = new BMap.Point(lon, lat); // 创立 点立标 var gc = new BMap.Geocoder(); gc.getLocation(point, function (rs) { var addComp = rs.addressComponents; var curCity = { id: '', name: addComp.province, date: curDateTime() }; //当前定位乡市 $.cookie('VPIAO_MOBILE_CURRENTCITY', JSON.stringify(curCity), { expires: 七, path: '/' }); //alert(addComp.province + ", " + addComp.city + ", " + addComp.district + ", " + addComp.street); }); }; var showPositionError = function (error) { switch (error.code) { case 一: alert("地位 办事 被谢绝 。"); break; case 二: alert("临时 猎取没有到地位 疑息。"); break; case 三: alert("猎取地位 疑息超时。"); break; default: alert("已知毛病 。"); break; } var curCity = { id: '00000 一', name: '南京市', date: curDateTime() }; //默许乡市 $.cookie('VPIAO_MOBILE_DEFAULTCITY', JSON.stringify(curCity), { expires: 一, path: '/' }); };