googlemaps / googlemaps/react-native-navigation-sdk

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

オープン
#449 コメント 2 件 リアクション 0 件 担当者 1 名 @illuminati1911 が担当を希望しています GitHub で見る
priority: p3 type: feature request
主要言語
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 はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。