首页 > 解决方案 > 地图始终位于搜索位置标记的中心

问题描述

当我输入代码时:region={this.props.region}它可以工作并将地图居中在搜索的位置,但不允许在地图中选择其他标记......它总是回到搜索的位置,如果我取消这部分代码:region={this.props.region},我可以选择其他标记,但是当我搜索其他位置时,相机不会移动到所选位置。在这种情况下如何进行?

这是一些代码:

<MapView
        provider="google"
        style={styles.map}
        //region={this.props.region}
        initialRegion={this.state.focusedlocation}
        ref={ref => (this.map = ref)}>
        {this.renderMarkers()}
        <MapView.Marker
          onPress={this.pickLocationHandler}
          coordinate={this.props.region}>
          <Image source={markerImage} style={styles.icon} />
        </MapView.Marker>
      </MapView>

下面是为标记设置动画的代码:

 pickLocationHandler = event => {
const coords = event.nativeEvent.coordinate;
console.log('Location picker Marker', coords);
this.map.animateToRegion({
  ...this.state.focusedlocation,
  latitude: coords.latitude,
  longitude: coords.longitude,
  latitudeDelta: LATITUDE_DELTA,
  longitudeDelta: LONGITUDE_DELTA,
});

请将此小吃打开整个代码

标签: react-nativelocationgoogle-places

解决方案


region当你想控制地图的视口时使用。在您的情况下,您可以使用animateCamera将地图移动到您搜索的位置。

this.map.animateCamera({
  center: {latitude, longitude}
})

更新

地图视图.js

export default class MapView extends Component {
  ...
  animateToLocation = (location) => {
    this.map.animateToRegion({
      latitude: location.latitude,
      longitude: location.longitude,
      latitudeDelta: LATITUDE_DELTA,
      longitudeDelta: LONGITUDE_DELTA,
    });
  }
  ...
  render() {
    return (
      <View style={styles.container} {...this.props}>
      ...
    )
  }
}

地图容器.js

class MapContainer extends React.Component {
  ...
  getCoordsFromName(loc) { 
    this.map.animateToLocation({
      latitude: loc.lat,
      longitude: loc.lng,
    })
  }

  render() {
    return (
      <View style={{ flex: 1}}>
          <MyMapView ref={ref => this.map = ref} region={this.state.region}/>
          <MapInput style = {{flex: 1, position : 'absolute'}} notifyChange={loc => this.getCoordsFromName(loc)} />
      </View>
    );
  }
}

推荐阅读