ArcgisMapOptions constructor

const ArcgisMapOptions({
  1. required String apiKey,
  2. required MapStyle mapStyle,
  3. required LatLng initialCenter,
  4. required bool isInteractive,
  5. required bool showLabelsBeneathGraphics,
  6. required double zoom,
  7. required double tilt,
  8. required double initialHeight,
  9. required double heading,
  10. required ViewPadding padding,
  11. required bool rotationEnabled,
  12. required int minZoom,
  13. required int maxZoom,
  14. required double xMin,
  15. required double xMax,
  16. required double yMin,
  17. required double yMax,
  18. required List<DefaultWidget> defaultUiList,
  19. BaseMap? basemap,
  20. Ground? ground,
  21. List<String>? vectorTilesUrls,
  22. bool isPopupEnabled = false,
})

Implementation

const ArcgisMapOptions({
  required this.apiKey,
  required this.mapStyle,
  required this.initialCenter,
  required this.isInteractive,
  required this.showLabelsBeneathGraphics,
  required this.zoom,
  required this.tilt,
  required this.initialHeight,
  required this.heading,
  required this.padding,
  required this.rotationEnabled,
  required this.minZoom,
  required this.maxZoom,
  required this.xMin,
  required this.xMax,
  required this.yMin,
  required this.yMax,
  required this.defaultUiList,
  this.basemap,
  this.ground,
  this.vectorTilesUrls,
  this.isPopupEnabled = false,
});