google_routes_flutter

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

google routes flutter

This package is a dart interface to the google routes api.
It allows you to get information about routes between locations, such as distance, travel time, etc.
Features #

computeRoute
computeRouteMatrix

Getting started #
Just add the package to your pubspec.yaml file:
dart pub add google_routes_flutter
copied to clipboard
Usage #
computeRoute #
Computes a route between 2 points.
var computeRoutesResult = await computeRoute(
origin: Waypoint(
location: Location(
latLng: LatLng(
latitude: 33.25889341635255,
longitude: 35.210018284644185,
),
),
),
destination: Waypoint(
location: Location(
latLng: LatLng(
latitude: 33.278430320176085,
longitude: 35.216819613960894,
),
),
),
xGoogFieldMask: 'routes.distanceMeters,routes.routeLabels',
apiKey: 'YOUR_API_KEY',
);
copied to clipboard
computeRouteMatrix #
Computes a route between each origin/destination pair of the provided origins and destinations lists
var computeRouteMatrixResult = await computeRouteMatrix(
origins: [
RouteMatrixOrigin(
waypoint: Waypoint(
location: Location(
latLng: LatLng(
latitude: 33.25889341635255,
longitude: 35.210018284644185,
),
),
),
),
],
destinations: [
RouteMatrixDestination(
waypoint: Waypoint(
location: Location(
latLng: LatLng(
latitude: 33.278430320176085,
longitude: 35.216819613960894,
),
),
),
),
],
xGoogFieldMask: 'distanceMeters',
apiKey: 'YOUR_API_KEY',
);
copied to clipboard
Contributing #

Feel free to open an issue if you have any problem or suggestion.
Feel free to open a pull request if you want to contribute.

Want to say thanks? #

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.