addGraphic method

Future<void> addGraphic(
  1. int mapId,
  2. String layerId,
  3. Graphic graphic
)

Adds the provided graphic to the map. You can't add a second graphic with the same id.

Implementation

Future<void> addGraphic(int mapId, String layerId, Graphic graphic) {
  throw UnimplementedError('addGraphic() has not been implemented.');
}