admin管理员组文章数量:1341899
<MapView style={styles.map}
showsUserLocation = {true}
>
- How to center map on user location in Android?
- How to change this blue circle with other user location marker?
<MapView style={styles.map}
showsUserLocation = {true}
>
- How to center map on user location in Android?
- How to change this blue circle with other user location marker?
1 Answer
Reset to default 11You 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?
本文标签: javascriptReact native how to center map on user locationStack Overflow
版权声明:本文标题:javascript - React native how to center map on user location - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743685270a2521790.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论