程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> 關於.NET >> html5獲取經緯度,百度api獲取街區名,並使用JS保存進cookie,html5cookie

html5獲取經緯度,百度api獲取街區名,並使用JS保存進cookie,html5cookie

編輯:關於.NET

html5獲取經緯度,百度api獲取街區名,並使用JS保存進cookie,html5cookie


引用js
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=百度申請的ak"></script>

//html5獲取經緯度 function GetLocation() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(showPosition); } else { alert("Geolocation is not supported by this browser."); } } //百度api獲取街區名 function showPosition(position) { var origins = position.coords.latitude + "," + position.coords.longitude; var myGeo = new BMap.Geocoder(); var point = new BMap.Point(position.coords.longitude, position.coords.latitude); myGeo.getLocation(point, function (rs) { var addComp = rs.addressComponents; setCookie(‘c_district’,rs.addressComponents.district,1); }); } //JS保存cookie function setCookie(c_name, value, expiredays) { var exdate = new Date() exdate.setDate(exdate.getDate() + expiredays) document.cookie = c_name + "=" + value + ';path=/' + ((expiredays == null) ? "" : ";expires=" + exdate.toGMTString()) } //獲取cookie function getCookie(c_name) { if (document.cookie.length > 0) { c_start = document.cookie.indexOf(c_name + "=") if (c_start != -1) { c_start = c_start + c_name.length + 1 c_end = document.cookie.indexOf(";", c_start) if (c_end == -1) c_end = document.cookie.length return (document.cookie.substring(c_start, c_end)); } } return "" }

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved