Uses the query method to stop all tours in Google Earth.
Future<void> stopTour() async { try { await query('exittour=true'); } catch (e) { // ignore: avoid_print print(e); } }