react-native-maps如何判断用户位置是否在可见地图之外

时间:2018-11-16 06:58:16

标签: react-native react-native-maps

有一种方法可以告诉反应本地图的当前可见边界。我想知道何时用户不再在地图上可见。

1 个答案:

答案 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 })      
})