Kml, kmz és geojson import és térképi megjelnítésük.

This commit is contained in:
2026-06-21 10:07:35 +02:00
parent 0828630a5b
commit 7c29bc7ae5
14 changed files with 1095 additions and 13 deletions
+6 -1
View File
@@ -79,7 +79,12 @@ class MapModeMenuAnchor extends StatelessWidget {
fontSize: 18, fontWeight: FontWeight.w600)),
const Icon(Icons.arrow_drop_down, size: 22),
]),
Text(p == null ? 'Projekt' : p.name,
Text(
p == null
? 'Projekt'
: (p.name.length > 18
? '${p.name.substring(0, 18)}...'
: p.name),
style: TextStyle(
fontSize: 12,
fontStyle: FontStyle.italic,