wgs84 és eov koordinátákat megjelenítő kártyák, eov magasság

This commit is contained in:
2026-06-07 11:45:15 +02:00
parent 497821bb41
commit b85cdb2596
9 changed files with 422 additions and 1 deletions
+52
View File
@@ -0,0 +1,52 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:terepi_seged/pages/map_survey/presentations/controllers/map_survey_controller.dart';
import 'map_info_card.dart';
import 'format_menu_button.dart';
import 'coordinate_row.dart';
class Wgs84CoordinateCard extends StatelessWidget {
final MapSurveyController controller;
const Wgs84CoordinateCard({
super.key,
required this.controller,
});
@override
Widget build(BuildContext context) {
return Obx(() {
return MapInfoCard(
onClose: controller.toggleShowWgs84Card,
title: Row(
children: [
const Icon(Icons.public, size: 18),
const SizedBox(width: 6),
Text(
'WGS84',
style: Theme.of(context).textTheme.titleSmall?.copyWith(
fontWeight: FontWeight.w700,
),
),
const Spacer(),
FormatMenuButton(controller: controller),
],
),
child: Column(
children: [
CoordinateRow(
label: 'Lat',
value: controller.latitudeText,
),
const SizedBox(height: 4),
CoordinateRow(
label: 'Lon',
value: controller.longitudeText,
),
],
),
);
});
}
}