Új térkép widget, melyet több oldal is használ

This commit is contained in:
2026-05-12 00:14:11 +02:00
parent 7dd642b299
commit f2457817b2
11 changed files with 1718 additions and 434 deletions
+13
View File
@@ -0,0 +1,13 @@
class MeasuredPoint {
final String name;
final double latitude;
final double longitude;
final double? altitude;
const MeasuredPoint({
required this.name,
required this.latitude,
required this.longitude,
this.altitude,
});
}