最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React native how to center map on user location - Stack Overflow

programmeradmin0浏览0评论
<MapView style={styles.map}
      showsUserLocation = {true}
>
  1. How to center map on user location in Android?
  2. How to change this blue circle with other user location marker?
<MapView style={styles.map}
      showsUserLocation = {true}
>
  1. How to center map on user location in Android?
  2. How to change this blue circle with other user location marker?
Share edited Dec 30, 2017 at 2:38 jwpfox 5,25011 gold badges48 silver badges42 bronze badges asked Dec 5, 2017 at 19:05 Damian SzmulikDamian Szmulik 211 gold badge1 silver badge5 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 11

You could make use of ref here like so:

<MapView ref={map => {this.map = map}} />

and then in the function that you call when you want to center the map, assuming you have the location of the user stored in the state somewhere, you could do this

handleCenter = () => {
  const { latitude, longitude, latitudeDelta, longitudeDelta } = this.state.location;
  this.map.animateToRegion({
    latitude,
    longitude,
    latitudeDelta,
    longitudeDelta
  })
}

react-native-maps uses animateToRegion to update the shown region of the map to a specific one and you need to supply the method with a region to go to.

You could also update the region prop on the map programatically to achieve the same effect, without the animation though.

As for the second part of the question, I am not sure I understand what you want to do. Could you maybe reword the second question?

发布评论

评论列表(0)

  1. 暂无评论