clearSatellites method

void clearSatellites()

Removes all satellites from the globe.

Example usage:

controller.clearSatellites();

Implementation

void clearSatellites() {
  satellites.clear();
  notifyListeners();
}