implemented map view with markers for every floodstation

This commit is contained in:
2025-01-28 16:34:25 +01:00
parent 68b0d5834d
commit 562c85079d
4 changed files with 98 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
class CustomMarker extends StatelessWidget {
const CustomMarker({super.key, this.label});
final String? label;
@override
Widget build(BuildContext context) {
return Icon(
Icons.location_on_sharp,
color: Theme.of(context).colorScheme.primary,
size: 30,
);
}
}