使用React Native和iOS模拟器进行错误的地理定位
发布时间:2020-12-15 09:32:39 所属栏目:百科 来源:网络整理
导读:我正在使用react-native-maps并使用react-native api进行地理定位.当我通过api使用位置时,模拟器上显示的内容显示我在旧金山而不是在我所在的丹佛科罗拉多州.有没有理由为什么我的位置不会显示我在哪里? 我运行该位置的功能 // Get current users locaiton
我正在使用react-native-maps并使用react-native api进行地理定位.当我通过api使用位置时,模拟器上显示的内容显示我在旧金山而不是在我所在的丹佛科罗拉多州.有没有理由为什么我的位置不会显示我在哪里?
我运行该位置的功能 // Get current users locaiton on load componentDidMount() { navigator.geolocation.getCurrentPosition((position) => { console.log(position); let newLat = parseFloat(position.coords.latitude); console.log("newLat",newLat); let newLng = parseFloat(position.coords.longitude); console.log("newLng",newLng); // set region of user to lat and long position // deltas set distance from marker (zoom) on map this.setState({ region: { latitude: newLat,longitude: newLng,latitudeDelta: 0.0250,longitudeDelta: 0.0125 },error: null }); console.log(this.state); },// if error set state with error (err) => { console.log(err),// set location accuracy on // max time to find location in 5 sec // max time to use cached location for phone 5 sec { timeout: 5000,maximumAge: 5000 }; } ); // watch for changes and update location this.watchId = navigator.geolocation.watchPosition((position) => { console.log(position); let newLat = parseFloat(position.coords.latitude); console.log("newLat",(err) => { console.log(err),// set location accuracy on // max time to find location in 5 sec // max time to use cached location for phone 5 sec // distance before location called again 10 m { timeout: 5000,maximumAge: 5000,distanceFilter: 10 } } ); } 我在初始状态下预设的位置是: this.state ={ region: { latitude: 39.739236,longitude: -104.990251,latitudeDelta: 0.1000,longitudeDelta: 0.0500 }, 这比iOS模拟器给我看的更近 任何人遇到这个问题,知道如何解决它?它是反应原生网正在运行的网络还是不应该从我的笔记本电脑网络位置拉? 我看过是否有其他人遇到过这个问题: 谢谢你的帮助 解决方法
这是iOS模拟器(和Android模拟器)上的正确行为.您可以更改每个地理位置的模拟坐标(从其他答案转述):
iOS >在iOS模拟器中运行应用程序. Android >在Android模拟器中运行应用程序. 还有一个使用telnet和geo fix命令的Android explained here的命令行替代方案. 或者,你可以像ashutosh pandey建议并在真实设备上进行测试. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |