@@ -51,7 +51,7 @@ Resets the initialization state to `NotStarted`.
5151``` kotlin
5252fun moveCameraTo (
5353 cameraPosition : MapCameraPositionImpl ,
54- durationMs : Long? = 0,
54+ durationMills : Long? = 0,
5555 listener : MoveCameraCallback ? = null
5656)
5757```
@@ -60,7 +60,7 @@ Moves the camera to a specific position with optional animation.
6060``` kotlin
6161fun moveCameraTo (
6262 position : GeoPointImpl ,
63- durationMs : Long? = 0,
63+ durationMills : Long? = 0,
6464 listener : MoveCameraCallback ? = null
6565)
6666```
@@ -106,7 +106,7 @@ fun CameraControlExample() {
106106 val sanFrancisco = GeoPointImpl .fromLatLong(37.7749 , - 122.4194 )
107107 mapViewState.moveCameraTo(
108108 position = sanFrancisco,
109- durationMs = 1000 ,
109+ durationMills = 1000 ,
110110 listener = object : MapViewState .MoveCameraCallback {
111111 override fun onComplete () {
112112 println (" Camera movement completed" )
@@ -198,4 +198,4 @@ MapView(
1981982 . ** Monitor Initialization** : Check initialization state before adding content
1991993 . ** Handle Failures** : Provide fallback UI for initialization failures
2002004 . ** Provider Abstraction** : Write code that works with any provider implementation
201- 5 . ** Resource Management** : Allow the SDK to handle lifecycle management automatically
201+ 5 . ** Resource Management** : Allow the SDK to handle lifecycle management automatically
0 commit comments