RasterSourceProperties constructor

const RasterSourceProperties({
  1. String? url,
  2. List<String>? tiles,
  3. List<double>? bounds = const [-180, -85.051129, 180, 85.051129],
  4. double? minzoom = 0,
  5. double? maxzoom = 22,
  6. double? tileSize = 512,
  7. String? scheme = "xyz",
  8. String? attribution,
})

Implementation

const RasterSourceProperties({
  this.url,
  this.tiles,
  this.bounds = const [-180, -85.051129, 180, 85.051129],
  this.minzoom = 0,
  this.maxzoom = 22,
  this.tileSize = 512,
  this.scheme = "xyz",
  this.attribution,
});