Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

HTML5 Geolocation โดยไม่ต้องเชื่อมต่อ SSL


HTML 5 Geolocation ใช้เพื่อค้นหาตำแหน่งของผู้ใช้ สามารถทำได้โดยไม่ต้องเชื่อมต่อ SSL สามารถสร้างได้ดังนี้ -

// Variable apigeo shows successful location:
var apigeo = function(position) {
   alert("API geolocation success!\n\nlat = " + position.coords.latitude + "\nlng = " + position.coords.longitude);
};
var tryapigeo = function() {
   jQuery.post( "check the location on google map", function(success) {
      apiGeolocationSuccess({coords: {latitude: success.location.lat, longitude: success.location.lng}});
   }) //Gives success on given geolocation
   .failure(function(err) { //On failure, alert with failure is shown
      alert("error while showing geolocation! \n\n"+err);
   });
};

จากนั้นก็สามารถสร้างกรณีสวิตช์ต่างๆ สำหรับรหัสข้อผิดพลาดได้ รหัสข้อผิดพลาดที่แตกต่างกันสำหรับข้อผิดพลาดที่แตกต่างกัน

var tryloc = function() {//tryloc variable show current position
if (navigator.geolocation) {
   navigator.geolocation.getCurrentPosition(
      browserGeolocationSuccess, browserGeolocationFail,{
      maximumAge: 70000, timeout: 40000, enableHighAccuracy: true});
   / /this will show result with high accuracy
}};