-
Notifications
You must be signed in to change notification settings - Fork 145
/
Copy pathspinning_globe_example.dart
91 lines (80 loc) · 2.71 KB
/
spinning_globe_example.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import 'dart:async';
import 'dart:math';
import 'package:flutter/material.dart';
import 'package:mapbox_maps_example/example.dart';
import 'package:mapbox_maps_flutter/mapbox_maps_flutter.dart';
class SpinningGlobeExample extends StatefulWidget implements Example {
@override
final Widget leading = const Icon(Icons.threesixty_outlined);
@override
final String title = 'Spinning Globe';
@override
final String? subtitle =
'Display your map as an interactive, rotating globe.';
@override
State<StatefulWidget> createState() => SpinningGlobeExampleState();
}
class SpinningGlobeExampleState extends State<SpinningGlobeExample> {
late final MapboxMap mapboxMap;
late final StreamController<CameraOptions> cameras;
late final StreamSubscription subscription;
var isSpinning = true; // Auto-spinning
void _onMapCreated(MapboxMap mapboxMap) {
this.mapboxMap = mapboxMap;
cameras = StreamController(
onListen: () async {
_spinGlobe(await mapboxMap.getCameraState());
},
);
}
void _onStyleLoaded(_) {
subscription = cameras.stream.listen((toCamera) async {
await mapboxMap.easeTo(toCamera, null);
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: MapWidget(
onMapCreated: _onMapCreated,
onStyleLoadedListener: _onStyleLoaded,
onCameraChangeListener: (data) {
_spinGlobe(data.cameraState);
}),
floatingActionButton: Padding(
padding: const EdgeInsets.only(bottom: 24),
child: FloatingActionButton(
onPressed: () async {
setState(() {
isSpinning = !isSpinning;
if (!isSpinning) {
subscription.pause();
} else {
subscription.resume();
}
});
},
child: Icon(isSpinning ? Icons.pause : Icons.play_arrow),
),
));
}
void _spinGlobe(CameraState camera) {
final secondsPerRev = 120.0;
final slowSpinZoom = 3.0;
final maxSpinZoom = 5.0;
// Above zoom level 5, do not rotate.
if (camera.zoom < maxSpinZoom && !cameras.isClosed || !cameras.isPaused) {
// Rotate at intermediate speeds between zoom levels 3 and 5.
final speedFactor = (maxSpinZoom - max(slowSpinZoom, camera.zoom)) /
(maxSpinZoom - slowSpinZoom);
final distancePerSecond = speedFactor * 360.0 / secondsPerRev;
final newCamera = CameraOptions(
center: Point(
coordinates: Position(
camera.center.coordinates.lng - distancePerSecond,
camera.center.coordinates.lat)),
);
cameras.add(newCamera);
}
}
}