How can I set camera position and Zoom levels for Mappls Android SDK?

To set the camera position and zoom levels in mappls android SDK refer to the following code :
CameraPosition position = new CameraPosition.Builder()
.target(new LatLng(22.8978, 77.3245)) // Sets the new camera position
.zoom(14) // Sets the zoom to level 14
.tilt(45) // Set the camera tilt to 45 degrees
.build();
mapplsMap.setCameraPosition(position)