VectorSourceProperties constructor

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

Implementation

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