Skip to content

Commit 1d166df

Browse files
committed
Added Google Tile layers
1 parent bd8296b commit 1d166df

File tree

5 files changed

+58
-21
lines changed

5 files changed

+58
-21
lines changed

lib/layouts/home.dart

+46-9
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ import 'package:url_launcher/url_launcher.dart';
2424

2525
import '../shared/aircraft_settings.dart';
2626

27+
enum MapLayer { streets, satellite }
28+
2729
class HomeLayout extends StatefulWidget {
2830
const HomeLayout({super.key});
2931

@@ -35,6 +37,8 @@ class _HomeLayoutState extends State<HomeLayout> with TickerProviderStateMixin {
3537
final MapController mapController = MapController();
3638
late final TabController _tabController;
3739

40+
late MapLayer _selectedMapLayer;
41+
3842
final List<Marker> _photoMarkers = [];
3943

4044
final _debounce = const Duration(milliseconds: 800);
@@ -47,6 +51,9 @@ class _HomeLayoutState extends State<HomeLayout> with TickerProviderStateMixin {
4751
_tabController = TabController(length: 4, vsync: this);
4852
_getLocationAndMoveMap();
4953

54+
_selectedMapLayer =
55+
prefs.getInt("mapLayer") == 1 ? MapLayer.satellite : MapLayer.streets;
56+
5057
final presets = PresetManager.getPresets();
5158
Provider.of<ValueListenables>(context, listen: false).selectedCameraPreset =
5259
presets[0];
@@ -213,14 +220,16 @@ class _HomeLayoutState extends State<HomeLayout> with TickerProviderStateMixin {
213220
),
214221
children: [
215222
TileLayer(
216-
tileProvider: CancellableNetworkTileProvider(),
217-
tileBuilder: Theme.of(context).brightness == Brightness.dark
218-
? (context, tileWidget, tile) =>
219-
darkModeTileBuilder(context, tileWidget, tile)
220-
: null,
221-
urlTemplate: 'https://tile.openstreetmap.org/{z}/{x}/{y}.png',
222-
userAgentPackageName: 'com.yarosfpv.dji_mapper',
223-
),
223+
tileProvider: CancellableNetworkTileProvider(),
224+
tileBuilder: Theme.of(context).brightness == Brightness.dark
225+
? (context, tileWidget, tile) =>
226+
darkModeTileBuilder(context, tileWidget, tile)
227+
: null,
228+
urlTemplate: _selectedMapLayer == MapLayer.streets
229+
? 'https://{s}.google.com/vt/lyrs=m&x={x}&y={y}&z={z}'
230+
: 'https://{s}.google.com/vt/lyrs=y&x={x}&y={y}&z={z}',
231+
userAgentPackageName: 'com.yarosfpv.dji_mapper',
232+
subdomains: const ['mt0', 'mt1', 'mt2', 'mt3']),
224233
PolygonLayer(polygons: [
225234
Polygon(
226235
points: listenables.polygon,
@@ -361,9 +370,37 @@ class _HomeLayoutState extends State<HomeLayout> with TickerProviderStateMixin {
361370
),
362371
Align(
363372
alignment: Alignment.bottomRight,
364-
child: Row(
373+
child: Column(
365374
mainAxisSize: MainAxisSize.min,
375+
mainAxisAlignment: MainAxisAlignment.end,
366376
children: [
377+
Material(
378+
color: Theme.of(context).colorScheme.primaryContainer,
379+
borderRadius: BorderRadius.circular(10),
380+
child: InkWell(
381+
borderRadius: BorderRadius.circular(10),
382+
onTap: () => setState(() {
383+
_selectedMapLayer =
384+
_selectedMapLayer == MapLayer.streets
385+
? MapLayer.satellite
386+
: MapLayer.streets;
387+
prefs.setInt(
388+
"mapLayer",
389+
_selectedMapLayer == MapLayer.streets
390+
? 0
391+
: 1);
392+
}),
393+
child: Padding(
394+
padding: const EdgeInsets.all(8),
395+
child: Icon(
396+
Icons.layers,
397+
size: 20,
398+
color: Theme.of(context)
399+
.colorScheme
400+
.onPrimaryContainer,
401+
),
402+
)),
403+
),
367404
Padding(
368405
padding: const EdgeInsets.all(8.0),
369406
child: Material(

macos/Runner/AppDelegate.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Cocoa
22
import FlutterMacOS
33

4-
@NSApplicationMain
4+
@main
55
class AppDelegate: FlutterAppDelegate {
66
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
77
return true

packages/litchi_waypoint_engine/pubspec.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ packages:
7474
dependency: transitive
7575
description:
7676
name: crypto
77-
sha256: "1dceb0cf05cb63a7852c11560060e53ec2f182079a16ced6f4395c5b0875baf8"
77+
sha256: ec30d999af904f33454ba22ed9a86162b35e52b44ac4807d1d93c288041d7d27
7878
url: "https://pub.dev"
7979
source: hosted
80-
version: "3.0.4"
80+
version: "3.0.5"
8181
csv:
8282
dependency: "direct main"
8383
description:
@@ -346,10 +346,10 @@ packages:
346346
dependency: transitive
347347
description:
348348
name: vm_service
349-
sha256: f652077d0bdf60abe4c1f6377448e8655008eef28f128bc023f7b5e8dfeb48fc
349+
sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d"
350350
url: "https://pub.dev"
351351
source: hosted
352-
version: "14.2.4"
352+
version: "14.2.5"
353353
watcher:
354354
dependency: transitive
355355
description:

pubspec.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ packages:
6969
dependency: transitive
7070
description:
7171
name: crypto
72-
sha256: "1dceb0cf05cb63a7852c11560060e53ec2f182079a16ced6f4395c5b0875baf8"
72+
sha256: ec30d999af904f33454ba22ed9a86162b35e52b44ac4807d1d93c288041d7d27
7373
url: "https://pub.dev"
7474
source: hosted
75-
version: "3.0.4"
75+
version: "3.0.5"
7676
csslib:
7777
dependency: transitive
7878
description:
@@ -156,10 +156,10 @@ packages:
156156
dependency: "direct main"
157157
description:
158158
name: file_picker
159-
sha256: "1375f8685ca6f0412effecc2db834757e9d0e3e055468053e563794b0755cdcd"
159+
sha256: "167bb619cdddaa10ef2907609feb8a79c16dfa479d3afaf960f8e223f754bf12"
160160
url: "https://pub.dev"
161161
source: hosted
162-
version: "8.1.1"
162+
version: "8.1.2"
163163
fixnum:
164164
dependency: transitive
165165
description:
@@ -522,10 +522,10 @@ packages:
522522
dependency: "direct main"
523523
description:
524524
name: shared_preferences
525-
sha256: c272f9cabca5a81adc9b0894381e9c1def363e980f960fa903c604c471b22f68
525+
sha256: "746e5369a43170c25816cc472ee016d3a66bc13fcf430c0bc41ad7b4b2922051"
526526
url: "https://pub.dev"
527527
source: hosted
528-
version: "2.3.1"
528+
version: "2.3.2"
529529
shared_preferences_android:
530530
dependency: transitive
531531
description:

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: "Plan Survey & Photogrammetry Missions to use directly on your DJI
33

44
publish_to: "none"
55

6-
version: 1.1.0+3
6+
version: 1.2.0+4
77

88
environment:
99
sdk: ">=3.2.3 <4.0.0"

0 commit comments

Comments
 (0)