move abstract method

void move(
  1. dynamic center, {
  2. double? zoom,
  3. bool animate = false,
})

Moves the map to a specific location and zoom level.

center can use format LatLng(20.0, 30.0) or 20.0, 30.0 animate set to true to move the map with animation. Default false.

Implementation

void move(dynamic center, {double? zoom, bool animate = false});