HighchartsMapNavigationOptions constructor

HighchartsMapNavigationOptions({
  1. HighchartsMapNavigationButtonOptions? buttonOptions,
  2. HighchartsMapNavigationButtonsOptions? buttons,
  3. bool? enableButtons,
  4. bool? enableDoubleClickZoom,
  5. bool? enableDoubleClickZoomTo,
  6. bool? enableMouseWheelZoom,
  7. bool? enableTouchZoom,
  8. bool? enabled,
  9. double? mouseWheelSensitivity,
})

The mapNavigation option handles buttons for navigation in addition to mousewheel and doubleclick handlers for map zooming.

API Docs: https://api.highcharts.com/highmaps/mapNavigation

Implementation

HighchartsMapNavigationOptions(
    {this.buttonOptions,
    this.buttons,
    this.enableButtons,
    this.enableDoubleClickZoom,
    this.enableDoubleClickZoomTo,
    this.enableMouseWheelZoom,
    this.enableTouchZoom,
    this.enabled,
    this.mouseWheelSensitivity});