enablePanning property

bool enablePanning

Enables panning across the map layer.

Defaults to true.

Implementation

bool get enablePanning => _enablePanning;
void enablePanning=(bool value)

Implementation

set enablePanning(bool value) {
  if (_enablePanning == value) {
    return;
  }
  _enablePanning = value;
}