jumpTo method

MapboxMap jumpTo(
  1. CameraOptions options, [
  2. dynamic eventData
])

Changes any combination of center, zoom, bearing, and pitch, without an animated transition. The map will retain its current values for any details not specified in options.

@memberof MapboxMap# @param options @param eventData Additional properties to be added to event objects of events triggered by this method. @fires movestart @fires zoomstart @fires pitchstart @fires rotate @fires move @fires zoom @fires pitch @fires moveend @fires zoomend @fires pitchend @returns {MapboxMap} this

Implementation

MapboxMap jumpTo(CameraOptions options, [dynamic eventData]) =>
    MapboxMap.fromJsObject(jsObject.jumpTo(options.jsObject));