-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathcustom_marker.dart
264 lines (223 loc) · 6.54 KB
/
custom_marker.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
import 'dart:io';
import 'dart:math';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart'; // ignore: unnecessary_import
import 'package:maplibre_gl/maplibre_gl.dart';
import 'page.dart';
const randomMarkerNum = 100;
class CustomMarkerPage extends ExamplePage {
const CustomMarkerPage({super.key})
: super(const Icon(Icons.place), 'Custom marker');
@override
Widget build(BuildContext context) {
return const CustomMarker();
}
}
class CustomMarker extends StatefulWidget {
const CustomMarker({super.key});
@override
State createState() => CustomMarkerState();
}
class CustomMarkerState extends State<CustomMarker> {
final _rnd = Random();
late MapLibreMapController _mapController;
final _markers = <Marker>[];
final _markerStates = <MarkerState>[];
void _addMarkerStates(MarkerState markerState) {
_markerStates.add(markerState);
}
void _onMapCreated(MapLibreMapController controller) {
_mapController = controller;
controller.addListener(() {
if (controller.isCameraMoving) {
_updateMarkerPosition();
}
});
}
void _onStyleLoadedCallback() {
debugPrint('onStyleLoadedCallback');
}
void _onMapLongClickCallback(Point<double> point, LatLng coordinates) {
_addMarker(point, coordinates);
}
void _onCameraIdleCallback() {
_updateMarkerPosition();
}
void _updateMarkerPosition() {
final coordinates = <LatLng>[];
for (final markerState in _markerStates) {
coordinates.add(markerState.getCoordinate());
}
_mapController.toScreenLocationBatch(coordinates).then((points) {
_markerStates.asMap().forEach((i, value) {
_markerStates[i].updatePosition(points[i]);
});
});
}
void _addMarker(Point<double> point, LatLng coordinates) {
setState(() {
_markers.add(
Marker(
_rnd.nextInt(100000).toString(),
coordinates,
point,
_addMarkerStates,
),
);
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: Stack(children: [
MapLibreMap(
trackCameraPosition: true,
onMapCreated: _onMapCreated,
onMapLongClick: _onMapLongClickCallback,
onCameraIdle: _onCameraIdleCallback,
onStyleLoadedCallback: _onStyleLoadedCallback,
initialCameraPosition:
const CameraPosition(target: LatLng(35.0, 135.0), zoom: 5),
iosLongClickDuration: const Duration(milliseconds: 200),
),
IgnorePointer(
ignoring: true,
child: Stack(
children: _markers,
))
]),
floatingActionButton: FloatingActionButton(
onPressed: () {
//_measurePerformance();
// Generate random markers
final param = <LatLng>[];
for (var i = 0; i < randomMarkerNum; i++) {
final lat = _rnd.nextDouble() * 20 + 30;
final lng = _rnd.nextDouble() * 20 + 125;
param.add(LatLng(lat, lng));
}
_mapController.toScreenLocationBatch(param).then((value) {
for (var i = 0; i < randomMarkerNum; i++) {
final point =
Point<double>(value[i].x as double, value[i].y as double);
_addMarker(point, param[i]);
}
});
},
child: const Icon(Icons.add),
),
);
}
// ignore: unused_element
void _measurePerformance() {
const trial = 10;
final batches = [500, 1000, 1500, 2000, 2500, 3000];
final results = <int, List<double>>{};
for (final batch in batches) {
results[batch] = [0.0, 0.0];
}
_mapController.toScreenLocation(const LatLng(0, 0));
final sw = Stopwatch();
for (final batch in batches) {
//
// primitive
//
for (var i = 0; i < trial; i++) {
sw.start();
final list = <Future<Point<num>>>[];
for (var j = 0; j < batch; j++) {
final p = _mapController
.toScreenLocation(LatLng(j.toDouble() % 80, j.toDouble() % 300));
list.add(p);
}
Future.wait(list);
sw.stop();
results[batch]![0] += sw.elapsedMilliseconds;
sw.reset();
}
//
// batch
//
for (var i = 0; i < trial; i++) {
sw.start();
final param = <LatLng>[];
for (var j = 0; j < batch; j++) {
param.add(LatLng(j.toDouble() % 80, j.toDouble() % 300));
}
Future.wait([_mapController.toScreenLocationBatch(param)]);
sw.stop();
results[batch]![1] += sw.elapsedMilliseconds;
sw.reset();
}
debugPrint(
'batch=$batch,primitive=${results[batch]![0] / trial}ms, batch=${results[batch]![1] / trial}ms',
);
}
}
}
class Marker extends StatefulWidget {
final Point initialPosition;
final LatLng _coordinate;
final void Function(MarkerState) addMarkerState;
Marker(
String key,
this._coordinate,
this.initialPosition,
this.addMarkerState,
) : super(key: Key(key));
@override
State<StatefulWidget> createState() {
return MarkerState();
}
}
class MarkerState extends State<Marker> with TickerProviderStateMixin {
final _iconSize = 20.0;
late Point _position;
late AnimationController _controller;
late Animation<double> _animation;
MarkerState();
@override
void initState() {
super.initState();
_position = widget.initialPosition;
widget.addMarkerState(this);
_controller = AnimationController(
duration: const Duration(seconds: 2),
vsync: this,
)..repeat(reverse: true);
_animation = CurvedAnimation(
parent: _controller,
curve: Curves.elasticOut,
);
}
@override
void dispose() {
_controller.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
var ratio = 1.0;
//web does not support Platform._operatingSystem
if (!kIsWeb) {
// iOS returns logical pixel while Android returns screen pixel
ratio = Platform.isIOS ? 1.0 : MediaQuery.of(context).devicePixelRatio;
}
return Positioned(
left: _position.x / ratio - _iconSize / 2,
top: _position.y / ratio - _iconSize / 2,
child: RotationTransition(
turns: _animation,
child: Image.asset('assets/symbols/2.0x/custom-icon.png',
height: _iconSize)));
}
void updatePosition(Point<num> point) {
setState(() {
_position = point;
});
}
LatLng getCoordinate() {
return widget._coordinate;
}
}