1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-10 09:18:52 +01:00
nc-photos/app/lib/gps_map_util.dart

13 lines
285 B
Dart
Raw Permalink Normal View History

2023-09-12 18:29:44 +02:00
import 'package:np_gps_map/np_gps_map.dart';
extension GpsMapProviderExtension on GpsMapProvider {
String toUserString() {
switch (this) {
case GpsMapProvider.google:
return "Google Maps";
case GpsMapProvider.osm:
return "OpenStreetMap";
}
}
}