-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.dart
316 lines (300 loc) · 10.2 KB
/
main.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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter_dotenv/flutter_dotenv.dart';
import 'package:vietmap_automotive_flutter/models/latlng.dart';
import 'package:vietmap_automotive_flutter/models/marker.dart';
import 'package:vietmap_automotive_flutter/models/polygon.dart';
import 'package:vietmap_automotive_flutter/models/polyline.dart';
import 'package:vietmap_automotive_flutter/vietmap_automotive_flutter.dart';
import 'package:geolocator/geolocator.dart';
import 'di/app_context.dart';
void main() {
runZonedGuarded(
() async {
WidgetsFlutterBinding.ensureInitialized();
await dotenv.load(fileName: ".env");
runApp(const MyApp());
},
onError,
);
}
void onError(Object error, StackTrace stackTrace) {
debugPrint('Error: $error');
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
LatLng? _latLng;
bool _isMapReady = false;
bool _isMapRendered = false;
bool _isStyleLoaded = false;
late final VietmapAutomotiveFlutter _vietmapAutomotiveFlutterPlugin;
final _markers = <Marker>[];
final _polylines = <Polyline>[];
final _polygons = <Polygon>[];
@override
void initState() {
super.initState();
WidgetsBinding.instance.addPostFrameCallback(
(_) async {
await Future.wait(
[
requestPermission(),
initStateFunc(),
],
);
},
);
}
Future<void> requestPermission() async {
final res = await Geolocator.checkPermission();
if (res != LocationPermission.always ||
res != LocationPermission.whileInUse) {
await Geolocator.requestPermission();
}
}
void customizeOnMapClick(double lat, double lng) {
debugPrint('From customizeOnMapClick: Lat: $lat, Lng: $lng');
}
void customizeOnMapReady() {
debugPrint('From customizeOnMapReady');
}
void customizeOnMapRendered() {
debugPrint('From customizeOnMapRendered');
}
void customizeOnStyleLoaded() {
debugPrint('From customizeOnStyleLoaded');
}
Future<void> initStateFunc() async {
try {
_vietmapAutomotiveFlutterPlugin = VietmapAutomotiveFlutter(
onMapClick: (lat, lng) {
setState(() {
_latLng = LatLng(lat: lat, lng: lng);
});
},
onMapReady: () {
setState(() {
_isMapReady = true;
});
},
onMapRendered: () {
setState(() {
_isMapRendered = true;
});
},
onStyleLoaded: () {
setState(() {
_isStyleLoaded = true;
});
},
);
_vietmapAutomotiveFlutterPlugin.addMapClickListener(customizeOnMapClick);
_vietmapAutomotiveFlutterPlugin.addMapReadyListener(customizeOnMapReady);
_vietmapAutomotiveFlutterPlugin
.addMapRenderedListener(customizeOnMapRendered);
_vietmapAutomotiveFlutterPlugin
.addStyleLoadedListener(customizeOnStyleLoaded);
await _vietmapAutomotiveFlutterPlugin.initAutomotive(
styleUrl: AppContext.getVietmapMapStyleUrl(),
vietMapAPIKey: AppContext.getVietmapAPIKey(),
);
} catch (e) {
debugPrint('Error: $e');
}
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: SizedBox(
width: double.infinity,
child: Column(
children: [
ElevatedButton(
onPressed: () async {
final resp = await _vietmapAutomotiveFlutterPlugin.addMarkers(
markers: [
Marker(
width: 120,
height: 120,
imagePath: 'assets/50.png',
latLng:
const LatLng(lat: 10.762528, lng: 106.653099)),
Marker(
imagePath: 'assets/40.png',
latLng: const LatLng(
lat: 10.759238582476392, lng: 106.67595730119154),
width: 80,
height: 80),
],
);
_markers.addAll(resp);
},
child: const Text(
'Add Markers',
),
),
const SizedBox(height: 10),
ElevatedButton(
onPressed: () async {
final resp =
await _vietmapAutomotiveFlutterPlugin.addPolylines(
polylines: [
Polyline(
points: [
const LatLng(lat: 10.762528, lng: 106.653099),
const LatLng(lat: 10.762528, lng: 106.753099),
const LatLng(lat: 10.57234, lng: 106.853099),
],
width: 6,
),
],
);
_polylines.addAll(resp);
},
child: const Text('Add Polyline'),
),
const SizedBox(height: 10),
ElevatedButton(
onPressed: () async {
final resp =
await _vietmapAutomotiveFlutterPlugin.addPolygons(
polygons: [
Polygon(
points: [
const LatLng(lat: 10.762528, lng: 106.653099),
const LatLng(lat: 10.762528, lng: 106.753099),
const LatLng(lat: 10.57234, lng: 106.853099),
],
fillColor: Colors.red,
),
],
);
_polygons.addAll(resp);
},
child: const Text('Add Polygon'),
),
const SizedBox(height: 10),
Text(
'Map Click: ${_latLng != null ? 'Lat: ${_latLng!.lat}, Lng: ${_latLng!.lng}' : 'Not Clicked'}',
textAlign: TextAlign.center,
),
const SizedBox(height: 10),
Text(
'Map Ready: $_isMapReady',
textAlign: TextAlign.center,
),
const SizedBox(height: 10),
Text(
'Map Rendered: $_isMapRendered',
textAlign: TextAlign.center,
),
const SizedBox(height: 10),
Text(
'Style Loaded: $_isStyleLoaded',
textAlign: TextAlign.center,
),
const SizedBox(height: 10),
ElevatedButton(
onPressed: () {
_vietmapAutomotiveFlutterPlugin
.removeMapClickListener(customizeOnMapClick);
},
child: const Text('Remove onMapClick Listener'),
),
const SizedBox(height: 10),
ElevatedButton(
onPressed: () {
_vietmapAutomotiveFlutterPlugin
.removeMapReadyListener(customizeOnMapReady);
},
child: const Text('Remove onMapReady Listener'),
),
const SizedBox(height: 10),
ElevatedButton(
onPressed: () {
_vietmapAutomotiveFlutterPlugin
.removeMapRenderedListener(customizeOnMapRendered);
},
child: const Text('Remove onMapRendered Listener'),
),
const SizedBox(height: 10),
ElevatedButton(
onPressed: () {
_vietmapAutomotiveFlutterPlugin
.removeStyleLoadedListener(customizeOnStyleLoaded);
},
child: const Text('Remove onStyleLoaded Listener'),
),
],
),
),
floatingActionButton: Column(
mainAxisAlignment: MainAxisAlignment.end,
children: [
FloatingActionButton(
onPressed: () async {
await _vietmapAutomotiveFlutterPlugin.removeAllMarkers();
_markers.clear();
},
child: const Icon(Icons.location_off),
),
const SizedBox(height: 10),
FloatingActionButton(
onPressed: () async {
await _vietmapAutomotiveFlutterPlugin.removeMarker(
markerIds: _markers.map((e) => e.markerId ?? 0).toList(),
);
_markers.clear();
},
child: const Icon(Icons.location_off_rounded),
),
const SizedBox(height: 10),
FloatingActionButton(
onPressed: () async {
await _vietmapAutomotiveFlutterPlugin.removeAllPolylines();
_polylines.clear();
},
child: const Icon(Icons.route),
),
const SizedBox(height: 10),
FloatingActionButton(
onPressed: () async {
await _vietmapAutomotiveFlutterPlugin.removePolyline(
polylineIds: _polylines.map((e) => e.id ?? 0).toList(),
);
_polylines.clear();
},
child: const Icon(Icons.route),
),
const SizedBox(height: 10),
FloatingActionButton(
onPressed: () async {
await _vietmapAutomotiveFlutterPlugin.removeAllPolygons();
_polygons.clear();
},
child: const Icon(Icons.rectangle),
),
const SizedBox(height: 10),
FloatingActionButton(
onPressed: () async {
await _vietmapAutomotiveFlutterPlugin.removePolygon(
polygonIds: _polygons.map((e) => e.id ?? 0).toList(),
);
_polygons.clear();
},
child: const Icon(Icons.rectangle),
),
],
),
),
);
}
}