mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 08:46:18 +01:00
15 lines
380 B
Dart
15 lines
380 B
Dart
import 'package:nc_photos/entity/file.dart';
|
|
import 'package:np_geocoder/np_geocoder.dart';
|
|
|
|
extension ReverseGeocoderExtension on ReverseGeocoderLocation {
|
|
ImageLocation toImageLocation() {
|
|
return ImageLocation(
|
|
name: name,
|
|
latitude: latitude,
|
|
longitude: longitude,
|
|
countryCode: countryCode,
|
|
admin1: admin1,
|
|
admin2: admin2,
|
|
);
|
|
}
|
|
}
|