作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想从 getCurrentPosition()
方法获取坐标,以便可以在其他方法中使用它,但我无法做到这一点。
这是我的 HTML
<div id="map"></div>
这是我的 JavaScript 代码
var x = document.getElementById("map");
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
} else {
x.innerHTML = "Geolocation is not supported by this browser.";
}
}
function showPosition(position) {
var a = position.coords.latitude;
var b = position.coords.longitude;
pos = {a, b}
console.log(pos);
}
getLocation();
我想通过 showPosition()
方法以某种方式访问 pos
变量。我有什么办法可以做到吗?或者如果我不能,是否有任何替代方法可以解决我的问题?请帮助我。
最佳答案
您应该能够在全局范围内简单地定义 pos
,并且无论您在哪里需要它都可以访问它。您在 showPosition
pos
的方式也存在问题
var x = document.getElementById("map");
var pos;
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
}
else {
x.innerHTML = "Geolocation is not supported by this browser.";
}
}
function showPosition(position) {
var a = position.coords.latitude;
var b = position.coords.longitude;
pos = [
a,
b
];
console.log(pos);
}
getLocation();
关于javascript - 如何从 getCurrentPosition() 获取坐标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51162046/
我是一名优秀的程序员,十分优秀!