close method

void close()

Closes the itinerary panel and removes the route from the map.

Implementation

void close() {
  _mapManager!.enablePOISelection();
  _mapManager!.removeItinerary();
  _currentItinerary = null;
  _isVisible = false;
  _notify();
}