readLabelsSingle method

  1. @override
Future<DatastoreBundle> readLabelsSingle(
  1. Tile tile
)

Reads label data for a single tile.

Labels include POIs and named ways (roads, buildings, etc.) that have text labels for display. Implementations may return additional data.

tile The tile for which to retrieve label data Returns label data bundle or null if no data available

Implementation

@override
Future<DatastoreBundle> readLabelsSingle(Tile tile) {
  // TODO: implement readLabelsSingle
  throw UnimplementedError();
}