getTileOverlayInfo method

Future<TileOverlay?> getTileOverlayInfo(
  1. TileOverlayId tileOverlayId, {
  2. required int mapId,
})

Returns information about the tile overlay with the given ID.

The returned object will be synthesized from platform data, so will not be the same Dart object as the original TileOverlay provided to the platform interface with that ID, and not all fields (e.g., TileOverlay.tileProvider) will be populated.

Implementation

Future<TileOverlay?> getTileOverlayInfo(TileOverlayId tileOverlayId,
    {required int mapId}) {
  throw UnimplementedError('getTileOverlayInfo() has not been implemented.');
}