Start to implement functions: adding point, polyline and polygon to map

This commit is contained in:
2025-10-11 09:26:59 +02:00
parent e986cccdd6
commit e8a6e4464a
7 changed files with 295 additions and 4 deletions
@@ -55,6 +55,22 @@ class HomeView extends GetView<HomeViewController> {
// child: const Text('RTCM teszt'))
],
),
Padding(
padding: const EdgeInsets.symmetric(vertical: 10.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
TextButton(
onPressed: () async {
Get.toNamed("/field_trip");
},
child: Text('Field trip')),
TextButton(
onPressed: () async {
Get.toNamed("/tracking");
},
child: Text('Tracking'))
])),
Padding(
padding: const EdgeInsets.only(top: 10.0),
child: Row(