Skip to content

Gives the polyline coordinates to set polylines in Google Map.

License

Notifications You must be signed in to change notification settings

brent159753/google_map_polyline

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gives polyline coordinates to set polylines in Google Map.

pub package

google_map_polyline

Flutter plugin to retrieve coordinates (in latitude and longitude) to draw the polylines (Route) in google_maps_flutter package. This package made with the inspiration of flutter_polyline_points.

Getting Started

To use this plugin, add google_map_polyline as a dependency in your pubspec.yaml file.

Example

  1. First you need to create object using your Google Maps API key.
  1. Now you may able retrieve coordinates for the Polyline route.
  • Get the Polyline coordinates using location coordinates (latitude and longitude)

     	await googleMapPolyline.getCoordinatesWithLocation(
     		origin: LatLng(40.677939, -73.941755),
     		destination: LatLng(40.698432, -73.924038),
     		mode:  RouteMode.driving);	
  • Get the Polyline coordinates using address of the location

     	await googleMapPolyline.getPolylineCoordinatesWithAddress(
     		origin:  '55 Kingston Ave, Brooklyn, NY 11213, USA',
     		destination:  '8007 Cypress Ave, Glendale, NY 11385, USA',
     		mode:  RouteMode.driving);

Overview

  • Coordinates with Location Coordinates (Latitude and Longitude)
  • Coordinates with Location Address
  • Route Modes
    • Driving
    • Walking
    • Bicycling
  • Coordinates with Location Coordinates and Address (example: Origin as address and Destination as coordinates)
  • Alternative routes

Feature Requests and Issues

Please file feature requests and bugs at the issue tracker.

About

Gives the polyline coordinates to set polylines in Google Map.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dart 74.6%
  • Ruby 13.0%
  • Objective-C 5.1%
  • Shell 5.0%
  • Java 2.3%