googlemaps / googlemaps/react-native-navigation-sdk

[Feature request] Missing MapView camera change event listeners in the Navigation SDK for React Native

Abierto
#449 2 comentarios 0 reacciones 1 asignado Reclamado por @illuminati1911 Ver en GitHub
priority: p3 type: feature request
Lenguaje dominante
TypeScript
Estrellas
227
Forks
38
Merge medio
5 d 7 h
PR fusionados (30 d)
10

Descripción

### 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_

Guía de contribución

Abrir la guía de contribución

Evaluación

Este issue todavía no se ha evaluado.

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.