goToPointThenZoom method
Move camera to point and zoom (like flyTo in leaflet)
Implementation
@override
goToPointThenZoom(LatLng point, double zoom) {
js_util.globalContext.callMethodVarArgs('_goToPointThenZoom'.toJS,
[point.latitude.toJS, point.longitude.toJS, zoom.toJS]);
}