如何设置我的纬度和经度以使用 Google Chrome 调试 Geolocation API?

How can I set my latitude and longitude for debugging the Geolocation API with Google Chrome?(如何设置我的纬度和经度以使用 Google Chrome 调试 Geolocation API?)
本文介绍了如何设置我的纬度和经度以使用 Google Chrome 调试 Geolocation API?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

对于我的开发系统,我希望能够在 Chrome 中设置地理位置(纬度、经度),这样当我进行测试时,浏览器会认为我在位置 X,而实际上我可能在位置是的.

For my development system I'd like to be able to set the Geolocation (Lat, Long) in Chrome so that when I'm doing the testing the browser thinks I'm at location X when I really might be at location Y.

有谁知道如何强制 Google Chrome 使用我提供的经纬度作为位置?

Does anyone know how to force Google Chrome to use a Lat and Long that I provide as the location?

推荐答案

如果你说的是 Geolocation API,你可以重写这个函数:

If you're talking about the Geolocation API, you can override the function:

navigator.geolocation.getCurrentPosition = function(success, failure) { 
    success({ coords: { 
        latitude: 30, 
        longitude: -105,

    }, timestamp: Date.now() }); 
} 

所以当一个库调用 navigator.geolocation.getCurrentPosition 函数时,您指定的坐标将被返回.

So when a library calls into the navigator.geolocation.getCurrentPosition function the coordinates you specify will be returned.

这篇关于如何设置我的纬度和经度以使用 Google Chrome 调试 Geolocation API?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)