Kml, kmz és geojson import és térképi megjelnítésük.
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user