我想从webshim库中访问地理定位功能,但是我无法找出正确的设置来使其正常工作?
我已经在使用内置的浏览器geolocation
功能,但是想要在没有geolocation
功能的浏览器中设置polyfill。
import React from "react";
import webshim from 'webshim';
import $ from 'jquery';
class PlayGround extends React.Component{
pickLocation = () => {
console.log("Inside here")
webshim.ready('geolocation', () => {
navigator.geolocation.getCurrentPosition(function(pos){
alert("Thx, you are @ latitude: "+ pos.coords.latitude +"/longitude: " + pos.coords.longitude);
});
});
console.log("end inside")
}
}
答案 0 :(得分:0)
使用polyfill填充对Geolocations的支持将不起作用。从浏览器获取位置需要本地支持。
几乎所有浏览器都支持地理位置https://caniuse.com/#feat=geolocation
相反,您应该检查浏览器是否支持地理定位。如果不支持,则以宽限期失败(向用户显示一些错误)
function fetchLocation() {
var options = {
enableHighAccuracy: true,
timeout: 5000,
maximumAge: 0
};
navigator.geolocation.getCurrentPosition(success, error, options);
}
function success(pos) {
var crd = pos.coords;
console.log('Your current position is:');
console.log(`Latitude : ${crd.latitude}`);
console.log(`Longitude: ${crd.longitude}`);
console.log(`More or less ${crd.accuracy} meters.`);
}
function error(err) {
console.warn(`ERROR(${err.code}): ${err.message}`);
}
if(window.location.protocol == "https:" && navigator.geolocation) {
fetchLocation();
} else {
// We cannot access the geolocation, show some error
}