-
Notifications
You must be signed in to change notification settings - Fork 145
/
Copy pathtraffic_route_line_example.dart
103 lines (96 loc) · 2.78 KB
/
traffic_route_line_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
92
93
94
95
96
97
98
99
100
101
102
103
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:mapbox_maps_example/example.dart';
import 'package:mapbox_maps_flutter/mapbox_maps_flutter.dart';
class TrafficRouteLineExample extends StatefulWidget implements Example {
@override
final Widget leading = const Icon(Icons.turn_sharp_left);
@override
final String title = 'Style a route showing traffic';
@override
final String subtitle =
"Use LineLayer to style a route line with traffic data.";
@override
State createState() => TrafficRouteLineExampleState();
}
class TrafficRouteLineExampleState extends State<TrafficRouteLineExample> {
late MapboxMap mapboxMap;
final _sfAirport =
Point(coordinates: Position(-122.39470445734368, 37.7080221537549));
_onMapCreated(MapboxMap mapboxMap) async {
this.mapboxMap = mapboxMap;
}
_onStyleLoadedCallback(StyleLoadedEventData data) async {
final data = await rootBundle.loadString('assets/sf_airport_route.geojson');
await mapboxMap.style.addSource(GeoJsonSource(id: "line", data: data));
await _addRouteLine();
}
_addRouteLine() async {
await mapboxMap.style.addLayer(LineLayer(
id: "line-layer",
sourceId: "line",
lineBorderColor: Colors.black.value,
// Defines a line-width, line-border-width and line-color at different zoom extents
// by interpolating exponentially between stops.
// Doc: https://docs.mapbox.com/style-spec/reference/expressions/
lineWidthExpression: [
'interpolate',
['exponential', 1.5],
['zoom'],
4.0,
6.0,
10.0,
7.0,
13.0,
9.0,
16.0,
3.0,
19.0,
7.0,
22.0,
21.0,
],
lineBorderWidthExpression: [
'interpolate',
['exponential', 1.5],
['zoom'],
9.0,
1.0,
16.0,
3.0,
],
lineColorExpression: [
'interpolate',
['linear'],
['zoom'],
8.0,
'rgb(51, 102, 255)',
11.0,
[
'coalesce',
['get', 'route-color'],
'rgb(51, 102, 255)'
],
],
));
}
@override
Widget build(BuildContext context) {
return Scaffold(
floatingActionButton: Padding(
padding: const EdgeInsets.all(12.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.end,
children: <Widget>[
const SizedBox(height: 10),
],
),
),
body: MapWidget(
key: const ValueKey("mapWidget"),
cameraOptions: CameraOptions(center: _sfAirport, zoom: 11.0),
textureView: true,
onMapCreated: _onMapCreated,
onStyleLoadedListener: _onStyleLoadedCallback));
}
}