camera_with_gps 2.3.1 copy "camera_with_gps: ^2.3.1" to clipboard
camera_with_gps: ^2.3.1 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 Flutter:

 $ flutter pub add camera_with_gps

This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):

dependencies:
  camera_with_gps: ^2.3.1

Alternatively, your editor might support 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/services/photo_processor_android.dart';
import 'package:camera_with_gps/services/photo_processor_ios.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/preview_box_android.dart';
import 'package:camera_with_gps/widgets/preview_box_ios.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';