uninav/lib/map.dart

185 lines
7.2 KiB
Dart
Raw Normal View History

2024-04-19 18:07:54 +00:00
import 'package:anim_search_bar/anim_search_bar.dart';
import 'package:flutter/material.dart';
2024-04-20 14:32:01 +00:00
import 'package:flutter/services.dart';
2024-04-19 18:07:54 +00:00
import 'package:flutter_map/flutter_map.dart';
2024-04-20 14:32:01 +00:00
import 'package:get/get.dart';
2024-04-19 18:07:54 +00:00
import 'package:latlong2/latlong.dart';
2024-04-20 14:32:01 +00:00
import 'package:rust_core/slice.dart';
import 'package:uninav/components/drawer.dart';
import 'package:uninav/components/hamburger_menu.dart';
import 'package:uninav/components/map_render_level.dart';
2024-04-20 14:32:01 +00:00
import 'package:uninav/controllers/map_controller.dart';
import 'package:uninav/data/geo/model.dart';
2024-04-20 22:35:16 +00:00
import 'package:uninav/util/geojson_util.dart';
2024-04-20 14:32:01 +00:00
import 'package:uninav/util/geomath.dart';
2024-04-19 18:07:54 +00:00
import 'package:url_launcher/url_launcher.dart';
class MapPage extends StatelessWidget {
const MapPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
final LayerHitNotifier hitNotifier = ValueNotifier(null);
2024-04-19 18:07:54 +00:00
return Scaffold(
2024-04-20 14:32:01 +00:00
drawer: MyDrawer(),
2024-04-19 18:07:54 +00:00
appBar: AppBar(
title: const Text('Map'),
2024-04-20 14:32:01 +00:00
leading: HamburgerMenu(),
2024-04-19 18:07:54 +00:00
// right side expanding search bar widget
actions: [
AnimSearchBar(
width: /* media query device width */ 300,
textController: TextEditingController(),
onSuffixTap: () {
print('Search');
},
closeSearchOnSuffixTap: false,
onSubmitted: (p0) => {
print('Search: $p0'),
},
),
]),
2024-04-20 14:32:01 +00:00
floatingActionButton: FloatingActionButton(
onPressed: () async {
// Add onPressed logic here
await Get.find<MyMapController>().loadGeoJson(
await rootBundle.loadString('assets/geo/uulm_beta.geojson'));
},
child: const Icon(Icons.add),
),
body: Stack(
2024-04-19 18:07:54 +00:00
children: [
2024-04-20 14:32:01 +00:00
FlutterMap(
2024-04-20 22:35:16 +00:00
mapController: Get.find<MyMapController>().mapController,
2024-04-20 14:32:01 +00:00
options: MapOptions(
initialCenter: const LatLng(48.422766, 9.9564),
initialZoom: 16.0,
2024-04-20 14:32:01 +00:00
// camera constraints
maxZoom: 19,
2024-04-20 22:35:16 +00:00
onTap: (tapPosition, point) {
print('Tap: $tapPosition, $point');
Get.find<MyMapController>().handleTap(tapPosition, point);
},
2024-04-20 14:32:01 +00:00
),
children: [
TileLayer(
urlTemplate: "https://tile.openstreetmap.org/{z}/{x}/{y}.png",
maxZoom: 19,
),
2024-04-20 22:35:16 +00:00
TranslucentPointer(
child: LevelLayer(
filter: (feature) => feature.type is Building,
notifier: hitNotifier,
),
),
2024-04-20 22:35:16 +00:00
// public transport
TranslucentPointer(
child: LevelLayer(
filter: (feature) =>
feature.level == null &&
feature.type is PublicTransport,
polyCenterMarkerConstructor: (center, name) => Marker(
width: 100,
height: 100,
point: center,
child: const Icon(
Icons.train,
color: Colors.black,
),
alignment: Alignment.center,
2024-04-20 14:32:01 +00:00
),
2024-04-20 22:35:16 +00:00
polyConstructor: (feature) => feature
.getPolygon(
constructor: (pts) => Polygon(
points: pts,
color: Colors.green.withOpacity(0.2),
borderColor: Colors.green,
borderStrokeWidth: 1,
hitValue: feature,
))
.unwrap(),
notifier: hitNotifier,
2024-04-20 14:32:01 +00:00
),
),
2024-04-20 22:35:16 +00:00
// current level
Obx(
() => Stack(
children: renderLevel(
Get.find<MyMapController>().currentLevel.value,
hitNotifier: hitNotifier)),
),
2024-04-20 14:32:01 +00:00
],
2024-04-19 18:07:54 +00:00
),
2024-04-20 14:32:01 +00:00
Positioned(
left: 16,
bottom: 16,
child: Container(
decoration: BoxDecoration(
color: Theme.of(context).colorScheme.surface,
borderRadius: BorderRadius.circular(8),
border: Border.all(
color: Colors.grey,
width: 1,
),
),
padding:
const EdgeInsets.symmetric(horizontal: 8, vertical: 4),
2024-04-21 00:22:53 +00:00
child: Row(
children: [
Obx(
() => DropdownButton<int>(
value: Get.find<MyMapController>().currentLevel.value,
style: TextStyle(
color: Theme.of(context).colorScheme.onSurface),
dropdownColor: Theme.of(context).colorScheme.surface,
onChanged: (int? newValue) {
if (newValue != null) {
Get.find<MyMapController>().setLevel(newValue);
}
// Handle dropdown value change
},
items: Get.find<MyMapController>()
.levels
.map<DropdownMenuItem<int>>((int value) {
return DropdownMenuItem<int>(
value: value,
child: Text("Level $value"),
);
}).toList(),
),
),
IconButton(
icon: const Icon(Icons.arrow_upward),
onPressed: () {
int currentLevel =
Get.find<MyMapController>().currentLevel.value;
if (currentLevel <
Get.find<MyMapController>().levels.last) {
Get.find<MyMapController>()
.setLevel(currentLevel + 1);
}
},
),
IconButton(
icon: const Icon(Icons.arrow_downward),
onPressed: () {
int currentLevel =
Get.find<MyMapController>().currentLevel.value;
if (currentLevel >
Get.find<MyMapController>().levels.first) {
Get.find<MyMapController>()
.setLevel(currentLevel - 1);
}
},
),
],
2024-04-20 14:32:01 +00:00
),
)),
2024-04-19 18:07:54 +00:00
],
));
}
}