flutter_map_esri 0.0.1 copy "flutter_map_esri: ^0.0.1" to clipboard
flutter_map_esri: ^0.0.1 copied to clipboard

outdatedDart 1 only

ESRI basemaps for flutter_map

flutter_map_esri #

ESRI basemaps for flutter_map. This does NOT provide esri FeatureLayers or other layers.

Example #

Use EsriBasemapOptions with EsriBasemapType

new FlutterMap(
  options: new MapOptions(
    center: new LatLng(34.0231688, -118.2874995),
    zoom: 17.0,
  ),
  layers: [
    new EsriBasemapOptions(
        esriBasemapType: EsriBasemapType.streets),
  ],
);

EsriBasemapOptions implements TileLayerOptions.