description property

String get description

Short description.

Implementation

String get description {
  switch (this) {
    case MapSource.openStreetMap:
      return 'Classic open source map';
    case MapSource.cartoVoyager:
      return 'Colorful and detailed';
    case MapSource.cartoDarkMatter:
      return 'Night-optimized dark theme';
    case MapSource.cartoPositron:
      return 'Light grayscale design';
    case MapSource.esriWorldStreetMap:
      return 'Professional street map';
    case MapSource.esriWorldImagery:
      return 'High-resolution satellite';
    case MapSource.esriWorldTopo:
      return 'Topographic with contours';
    case MapSource.openTopoMap:
      return 'Free topographic map';
    case MapSource.cyclOSM:
      return 'Optimized for cycling';
  }
}