maps_toolkit 1.0.1+3 copy "maps_toolkit: ^1.0.1+3" to clipboard
maps_toolkit: ^1.0.1+3 copied to clipboard

outdated

Maps toolkit - geo-measurements utils - area of polygon, distance between point, heading and offset between points (port of SphericalUtil from `android-maps-utils`).

maps_toolkit #

Pub Package Build Status Coverage Status GitHub Issues GitHub Forks GitHub Stars GitHub License

A library for area, distance, heading measurements (spherical_util.dart if port from android-maps-utils).

Getting Started #

In your dart/flutter project add the dependency:

 dependencies:
   ...
   maps_toolkit: ^1.0.1+3

A simple usage example:

import 'package:maps_toolkit/maps_toolkit.dart';

main() {
  val distanceBetweenPoints = SphericalUtil.computeDistanceBetween(
    LatLng(51.5073509, -0.1277583),
    LatLng(48.856614, 2.3522219)
  );
}

List of functions #

  • SphericalUtil.computeArea - calculate the area of a closed path on Earth.
  • SphericalUtil.computeDistanceBetween - calculate the distance between two points, in meters.
  • SphericalUtil.computeHeading - calculate the heading from one point to another point.
  • SphericalUtil.computeLength - calculate the length of the given path, in meters, on Earth.
  • SphericalUtil.computeOffset - calculate the point resulting from moving a distance from an origin in the specified heading (expressed in degrees clockwise from north).
  • SphericalUtil.computeOffsetOrigin - calculate the location of origin when provided with a point destination, meters travelled and original heading.
  • SphericalUtil.computeSignedArea - calculate the signed area of a closed path on Earth.
  • SphericalUtil.interpolate - calculate the point which lies the given fraction of the way between the origin and the destination.

Features and bugs #

Please file feature requests and bugs at the issue tracker.

314
likes
0
pub points
97%
popularity

Publisher

verified publisherkb-apps.com

Maps toolkit - geo-measurements utils - area of polygon, distance between point, heading and offset between points (port of SphericalUtil from `android-maps-utils`).

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on maps_toolkit