mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
12 lines
285 B
Dart
12 lines
285 B
Dart
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";
|
|
}
|
|
}
|
|
}
|