flutter_polyline_points 0.1.0 copy "flutter_polyline_points: ^0.1.0" to clipboard
flutter_polyline_points: ^0.1.0 copied to clipboard

outdated

A flutter package to get polyline points by either passing the coordinates or google encoded polyline string

flutter_polyline_points #

A flutter plugin that decodes encoded google polyline string into list of geo-coordinates suitable for showing route/polyline on maps

Getting Started #

This package contains functions to decode google encoded polyline string which returns a list of co-ordinates indicating route between two geographical position

Usage #

To use this package, add flutter_polyline_points as a dependency in your pubspec.yaml file.

Import the package #

import 'package:flutter_polyline_points/flutter_polyline_points.dart';

First method #

Get the list of points by Geo-coordinate

PolylinePoints polylinePoints = PolylinePoints();
List<PointLatLng> result = await polylinePoints.getRouteBetweenCoordinates(googleAPiKey,
        _originLatitude, _originLongitude, _destLatitude, _destLongitude);
print(result);

Second method #

Decode an encoded google polyline string e.g _p~iF~ps|U_ulLnnqC_mqNvxq`@

List<PointLatLng> result = decodePolyline("_p~iF~ps|U_ulLnnqC_mqNvxq`@");
print(result);

See the example directory for a complete sample app

523
likes
0
pub points
99%
popularity

Publisher

unverified uploader

A flutter package to get polyline points by either passing the coordinates or google encoded polyline string

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, http

More

Packages that depend on flutter_polyline_points