javascript A-Towing Geolocation

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript A-Towing Geolocation相关的知识,希望对你有一定的参考价值。

// get submit location button
var submitLocationBtn = document.getElementById('submitLocation');

// get form field for lat
var lat = document.getElementById("form-field-lat");
// get form field for lng
var lng = document.getElementById("form-field-lng");
	
	function getLocation() {
	    if (navigator.geolocation) {
	        navigator.geolocation.getCurrentPosition(showPosition);
	    } else {
	        alert("Geolocation is not supported by this browser.");
	    }
	}
	function showPosition(position) {
	    lat.value = position.coords.latitude;
		lng.value = position.coords.longitude; 
	}

// listen for clicks on submitLocationBtn
submitLocationBtn.addEventListener('click', (e) => {
	e.preventDefault();
	getLocation();
	
})

以上是关于javascript A-Towing Geolocation的主要内容,如果未能解决你的问题,请参考以下文章

H5获取地埋位置

gdalwarp:变形工具

js中如何检测元素导航的状态?

在谷歌地图中插入可变 GPS 坐标

浏览器地理位置:确定以前的权限

navigator.geolocation.getCurrentPosition 总是得到错误代码 3: timeout expired