9

我正在尝试创建一个简单的应用程序来加载谷歌地图(使用 airbnb 的 react-native-maps 库)并显示用户的当前位置。我看到的是地图总是显示默认的初始位置,而不是在获取用户位置后重新渲​​染。

我正在使用 React 0.42 并且仅在 iOS 上进行测试。这里有一些代码来澄清:

1.) 我设置了一个初始状态

state = {
      region: {
        latitude: 52,
        longitude: 5,
        latitudeDelta: 0.0922,
        longitudeDelta: 0.0421
      }
  }

2.) 我在 componentDidMount 中获取用户的位置

componentDidMount() {
    navigator.geolocation.getCurrentPosition(
      (position) => {
        this.setState({
          region: {
            latitude: position.coords.latitude,
            longitude: position.coords.longitude,
            latitudeDelta: 0.01,
            longitudeDelta: 0.0011
          }
        });
      },
      (error) => alert(JSON.stringify(error)),
      {enableHighAccuracy: true, timeout: 20000, maximumAge: 1000}
    );
  }

3.)使用渲染,我显示带有初始区域的地图,并期望一旦获取用户的位置,该区域就会改变

render() {
    return (
     <View style={{ flex: 1 }}>
       <View style={{backgroundColor: 'coral', height: 70, justifyContent: 'center', alignItems: 'center'}}>
         <Text>
            <Text>longitude: {this.state.region.longitude}</Text>
            <Text>latitude: {this.state.region.latitude}</Text>
        </Text>
       </View>
       <View style={styles.container}>
         <MapView
           provider={PROVIDER_GOOGLE}
           style={styles.map}
           initialRegion={this.state.region}
           region={this.state.region}
           onRegionChange={this.onRegionChange}
           onRegionChangeComplete={this.reloadEntities}
         />
       </View>
     </View>
   );
 }

这是onRegionChange,只是用新区域更新状态,我相信这会导致重新渲染

onRegionChange = (region) => {
  this.setState({ region });
}

注意:经度和纬度文本值会随着地图上区域的变化而更新,并且一旦获取用户的位置,它们就会更新。

所以我有点困惑,为什么一旦获取用户的位置,地图就不会改变它所显示的内容。任何帮助将非常感激!

更新:我看过这个线程:https ://github.com/airbnb/react-native-maps/issues/43它似乎主要围绕Android,但我确实尝试删除 enableHighAccuracy 选项没运气。

4

3 回答 3

3

使用您的区域 state 的值设置regionMapView 的this.state.region

您需要获取当前位置并将其设置为区域,然后watchPosition每次设备检测到位置发生变化时使用该函数获取坐标,这次将新值设置为您的region状态。

这会这样工作

import React, { Component } from 'react';
import MapView from 'react-native-maps';
import { AppRegistry, View } from 'react-native';

const { width, height } = Dimensions.get('window');
const ASPECT_RATIO    = width / height;
const LATITUDE        = 37.78825;
const LONGITUDE       = -122.4324;
const LATITUDE_DELTA  = 0.0122;
const LONGITUDE_DELTA = LATITUDE_DELTA * ASPECT_RATIO;
const SPACE           = 0.01;

class Test extends Component {
  constructor() {
    super();
    this.state = {
      region: {
        latitude: LATITUDE,
        longitude: LONGITUDE,
        latitudeDelta: LATITUDE_DELTA,
        longitudeDelta: LONGITUDE_DELTA
      }
    }
  }

componentDidMount() {
    navigator.geolocation.getCurrentPosition(
      (position) => {
        this.setState({
          region: {
            latitude: position.coords.latitude,
            longitude: position.coords.longitude,
            latitudeDelta: LATITUDE_DELTA,
            longitudeDelta: LONGITUDE_DELTA,
            accuracy: position.coords.accuracy
          }
        });
      },
      (error) => alert(error.message),
      {timeout: 10000}
    );

    this.watchID = navigator.geolocation.watchPosition((position) => {
      const newRegion = {
        latitude: position.coords.latitude,
        longitude: position.coords.longitude,
        latitudeDelta: LATITUDE_DELTA,
        longitudeDelta: LONGITUDE_DELTA,
        accuracy: position.coords.accuracy
      }
      this.setState({newRegion});
    });
  }

  componentWillUnmount() {
    navigator.geolocation.clearWatch(this.watchID);
  }

  render() {
    return (
      <View style={styles.container}>
        <MapView
          style={styles.map}
          region={this.state.region}
          showsUserLocation={true}
          followUserLocation={true}>
        </MapView>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    ...StyleSheet.absoluteFillObject,
    justifyContent: 'flex-end',
    alignItems: 'center',
  },
  map: {
    ...StyleSheet.absoluteFillObject,
  },
});

AppRegistry.registerComponent('Test', () => Test);

请务必在 MapView 中启用showsUserLocationfollowUserLocation这样应用程序将询问用户当前位置。

followUserLocation取决于showUserLocation

恒定的经度和纬度仅作为示例。

希望能帮助到你

于 2017-03-10T13:58:00.853 回答
2

您不应该将initialRegionprop 与regionprop 一起使用:

仅当您不想控制除了初始区域之外的地图视口时,才使用此道具而不是区域。

资源

initialRegion移除道具后它应该可以工作。

于 2017-03-09T19:05:17.183 回答
0

摆脱它也很重要onRegionChangeComplete={this.reloadEntities}

每次区域更改时,react-native 都会重新加载并默认回到您在构造函数中声明的初始状态。

于 2017-03-14T10:41:02.103 回答