如何使用react-native-maps获取当前位置

问题描述 投票:3回答:3

我试图使用react-native贴图在Android设备上的当前用户地理位置渲染地图。

这是我到目前为止所得到的:

import React, { Component } from 'react';

import {
  View,
  StyleSheet,
  Dimensions,
} from 'react-native';

import MapView from 'react-native-maps';

const {width, height} = Dimensions.get('window')

const SCREEN_HEIGHT = height
const SCREEN_WIDTH = width
const ASPECT_RATIO = width / height
const LATITUDE_DELTA = 0.0922
const LONGITUDE_DELTA = LATITUDE_DELTA * ASPECT_RATIO

class MapComponent extends Component {
  constructor() {
    super()
    this.state = {
      initialPosition: {
        latitude: 0,
        longitude: 0,
        latitudeDelta: 0,
        longitudeDelta: 0,
      },
    }
  }

  componentDidMount() {
    navigator.geolocation.getCurrentPosition((position) => {
      var lat = parseFloat(position.coords.latitude)
      var long = parseFloat(position.coords.longitude)

      var initialRegion = {
        latitude: lat,
        longitude: long,
        latitudeDelta: LATITUDE_DELTA,
        longitudeDelta: LONGITUDE_DELTA,
      }

      this.setState({initialPosition: initialRegion})
    },
    (error) => alert(JSON.stringify(error)),
    {enableHighAccuracy: true, timeout: 20000, maximumAge: 1000});
  }


  renderScreen = () => {
      return (
        <View style={styles.container}>
          <MapView
            style={styles.map}
            initialRegion={this.state.initialPosition}/>
        </View>
      );
  }

  render() {
    return (
      this.renderScreen()
    );
  }
}

const styles = StyleSheet.create({
  container: {
    position: 'absolute',
    top: 0,
    left: 0,
    right: 0,
    bottom: 0,
    justifyContent: 'flex-end',
    alignItems: 'center',
  },
  map: {
    position: 'absolute',
    top: 0,
    left: 0,
    right: 0,
    bottom: 0,
  },
});

export default MapComponent;

地图会按预期呈现,但不会在当前设备地理位置中呈现。 (它呈现在海洋中央)

权限已在AndroidManifest.xml中设置为:

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

20秒后,我收到一条警告说“位置请求超时”“代码3”

我做错了什么?

android react-native geolocation react-native-maps
3个回答
4
投票

我不确定,但有一个相似的issue ("Geolocation timed out, code 3")

对于在android上遇到此问题的其他人,请尝试删除maximumAge:2000选项参数。此选项导致地理定位超时或崩溃应用程序。


0
投票

它在我的工作完美。只有我做的改变是在StyleSheet

container: {
    position: 'absolute',
    height : SCREEN_HEIGHT,
    width : SCREEN_WIDTH,
    justifyContent: 'flex-end',
    alignItems: 'center',
}

此后,它呈现我的位置。您可以在此之后添加标记以显示您的位置。


0
投票

这对我有用。第三种选择是创造概率。

navigator.geolocation.getCurrentPosition() =>{

},
 err => {

},
{ enableHighAccuracy: false, timeout: 20000}, //this worked for me
© www.soinside.com 2019 - 2024. All rights reserved.