有一种方法可以告诉反应本地图的当前可见边界。我想知道何时用户不再在地图上可见。
答案 0 :(得分:0)
我认为您应该使用权限包。 React-native-maps不提供权限。我多次使用https://github.com/yonahforst/react-native-permissions。效果很好。
Permissions.request('location').then(response => {
// Returns once the user has chosen to 'allow' or to 'not allow' access
// Response is one of: 'authorized', 'denied', 'restricted', or 'undetermined'
this.setState({ locationPermission: response })
})