removeCircleMapObject abstract method

bool removeCircleMapObject(
  1. CircleMapObject circleMapObject
)

Removes a circle map object from the location view. circleMapObject The circle map object instance CircleMapObject. Returns true if the operation is successful, false otherwise.

Example:

// Remove circle map object
if (_circleMapObject != null) {
 bool removed = _locationWindow!.removeCircleMapObject(_circleMapObject!);
 print("Removed circle map object: $removed");
 _circleMapObject = null;
}

Implementation

bool removeCircleMapObject(CircleMapObject circleMapObject);