googlemaps / googlemaps/react-native-navigation-sdk
[Feature request] Missing MapView camera change event listeners in the Navigation SDK for React Native
- 主要言語
- TypeScript
- スター
- 227
- フォーク
- 38
- 平均マージ
- 5日 7時間
- マージ済み PR(30日)
- 10
説明
### Is there an existing issue for this?
- [x] I have searched the existing issues
### Description of the bug
I'm trying to detect camera movement events (e.g. onCameraIdle, onCameraMove) using the Navigation SDK for React Native, but these listeners don't appear to be exposed in the current version. I’ve checked the documentation and tried using mapViewCallbacks, but no camera-related events are triggered.
Would it be possible to expose these listeners or provide an alternative way to track camera changes?
### React Native version
0.73.6
### React version
18.2.0
### Package version
0.9.3
### Native SDK versions
- [x] I haven't changed the version of the native SDKs
### React Native Doctor Output
$ npx react-native doctor
⠴ Running diagnostics...'"adb"' is not recognized as an internal or external command,
operable program or batch file.
Common
✓ Node.js - Required to execute JavaScript code
✓ npm - Required to install NPM dependencies
● Metro - Metro Bundler is not running
Android
✖ Adb - No devices and/or emulators connected. Please create emulator with Android Studio or connect Android device.
✖ JDK - Required to compile Java code
- Version found: 11.0.16.1
- Version supported: >= 17 <= 20
✖ Android Studio - Required for building and installing your app on Android
✖ ANDROID_HOME - Environment variable that points to your Android SDK installation
✓ Gradlew - Build tool required for Android builds
✖ Android SDK - Required for building and installing your app on Android
- Versions found: N/A
- Version supported: .b34.0.0
Errors: 5
Warnings: 1
### Steps to reproduce
Add a component to your screen.
1. Pass the following mapViewCallbacks:
```javascript
{
console.log('Camera move started:', reason);
},
onCameraMove: () => {
console.log('Camera is moving');
},
onCameraIdle: () => {
console.log('Camera is idle');
},
}}
onMapViewControllerCreated={setMapViewController}
/>
```
2. Interact with the map by dragging or zooming.
3. Observe the console
### Expected vs Actual Behavior
```javascript
{
console.log('Camera move started:', reason);
},
onCameraMove: () => {
console.log('Camera is moving');
},
onCameraIdle: () => {
console.log('Camera is idle');
},
}}
onMapViewControllerCreated={setMapViewController}
/>
```
The following logs should be printed during user interaction:
- Camera move started: [reason]
- Camera is moving
- Camera is idle
### Code Sample
```javascript
{
console.log('Camera move started:', reason);
},
onCameraMove: () => {
console.log('Camera is moving');
},
onCameraIdle: () => {
console.log('Camera is idle');
},
}}
onMapViewControllerCreated={setMapViewController}
/>
```
### Additional Context
_No response_
コントリビューションガイド
評価
この issue はまだ評価されていません。