#### Environment details OS type and version: **any** Library version and other environment information: **v3.2.0** #### Steps to reproduce googleMap.cameraMoveStartedEvents().collect { ... } #### Code example cameraMoveStartedEvents does not pass reason code: https://github.com/googlemaps/android-maps-ktx/blob/main/maps-ktx/src/main/java/com/google/maps/android/ktx/GoogleMap.kt#L240 Should be: ``` public fun GoogleMap.cameraMoveStartedEvents(): Flow<Int> = callbackFlow { setOnCameraMoveStartedListener { trySend(it) } awaitClose { setOnCameraMoveStartedListener(null) } } ```
Environment details
OS type and version: any
Library version and other environment information: v3.2.0
Steps to reproduce
googleMap.cameraMoveStartedEvents().collect { ... }
Code example
cameraMoveStartedEvents does not pass reason code:
https://github.com/googlemaps/android-maps-ktx/blob/main/maps-ktx/src/main/java/com/google/maps/android/ktx/GoogleMap.kt#L240
Should be: