Geolocation 현재 위치 API가 IE11 Windows 10 시스템에서 일치하지 않습니다. 는 이하라는 응답 코드 2 (POSITION_UNAVAILABLE)와 코드가 에러 블록에 떨어지는 5 회 중Geolocation 현재 위치 API가 IE11.5에서 작동하지 않습니다 windows10
function setCurrentPos(event, firstLoad) {
navigator.geolocation.getCurrentPosition(function (position) {
firstLoad || setCurrentLocation(event.target, position.coords);
}, function (error) {
1 === error.code && ($this.currentLocDenied = !0);
});
}
4 "현재 위치가 결정될 수 없습니다.".
사용자가 위치에 액세스 할 수 있도록 허용하는 것으로 나타나는 브라우저 프롬프트는 허용되지 않도록 허용하도록 설정되어 있습니다.
버전 정보
. 실행중인 IE 버전 11.447.14393.0 – neumann1990