stopTour method

Future<void> stopTour()

Uses the query method to stop all tours in Google Earth.

Implementation

Future<void> stopTour() async {
  try {
    await query('exittour=true');
  } catch (e) {
    // ignore: avoid_print
    print(e);
  }
}