getGroundOverlayInfo method

Future<GroundOverlay?> getGroundOverlayInfo(
  1. GroundOverlayId groundOverlayId, {
  2. required int mapId,
})

Returns information about the ground 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 GroundOverlay provided to the platform interface with that ID, and not all fields will be populated.

Implementation

Future<GroundOverlay?> getGroundOverlayInfo(GroundOverlayId groundOverlayId,
    {required int mapId}) {
  throw UnimplementedError(
      'getGroundOverlayInfo() has not been implemented.');
}