location_distance_calculator 0.0.5 copy "location_distance_calculator: ^0.0.5" to clipboard
location_distance_calculator: ^0.0.5 copied to clipboard

A Flutter plugin which provides the distance between two locations

location_distance_calculator #

A Flutter package which provides the distance between two locations

Installation #

  • Add this to your package's pubspec.yaml file:
dependencies:
  location_distance_calculator:
  • You can install packages from the command line: with Flutter:
$ flutter packages get
  • Import it now in your Dart code:
 import 'package:location_distance_calculator/location_distance_calculator.dart';

Usage #

  • Code
    double distance;
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      distance = await LocationDistanceCalculator().distanceBetween(48.8438543, -3.5232399, 48.8589507, 2.2770204);
    } on PlatformException {
      distance = -1.0;
    }
2
likes
140
pub points
56%
popularity

Publisher

verified publisheretornam.dev

A Flutter plugin which provides the distance between two locations

Homepage

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, meta

More

Packages that depend on location_distance_calculator