camera_with_gps 2.2.0
camera_with_gps: ^2.2.0 copied to clipboard
A Flutter plugin for capturing photos with embedded GPS metadata.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add camera_with_gpsWith Flutter:
$ flutter pub add camera_with_gpsThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
camera_with_gps: ^2.2.0Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:camera_with_gps/pages/camera_preview_page.dart';
import 'package:camera_with_gps/services/camera_with_gps.dart';
import 'package:camera_with_gps/services/orientation_service.dart';
import 'package:camera_with_gps/services/photo_processor.dart';
import 'package:camera_with_gps/utils/camera_with_gps_method_channel.dart';
import 'package:camera_with_gps/utils/camera_with_gps_platform_interface.dart';
import 'package:camera_with_gps/widgets/bottom_bar.dart';
import 'package:camera_with_gps/widgets/error_ui.dart';
import 'package:camera_with_gps/widgets/gps_banner.dart';
import 'package:camera_with_gps/widgets/preview_box.dart';
import 'package:camera_with_gps/widgets/rot_icon.dart';
import 'package:camera_with_gps/widgets/shutter_button.dart';
import 'package:camera_with_gps/widgets/top_bar.dart';