MapDataStoreRenderer constructor

MapDataStoreRenderer(
  1. Datastore datastore,
  2. RenderTheme renderTheme,
  3. SymbolCache symbolCache,
  4. bool renderLabels,
)

Implementation

MapDataStoreRenderer(this.datastore, this.renderTheme, this.symbolCache, this.renderLabels) {
  if (renderLabels) {
    this.tileDependencies = TileDependencies();
  } else {
    this.tileDependencies = null;
  }
  _datastoreReader = DatastoreReader();
}