taxifarefinder 1.0.1 copy "taxifarefinder: ^1.0.1" to clipboard
taxifarefinder: ^1.0.1 copied to clipboard

outdated

A Dart wrapper for the TaxiFareFinder API <https://www.taxifarefinder.com/api.php>

taxifarefinder #

A wrapper for the TaxiFareFinder API. Documentation of the API can be found at https://www.taxifarefinder.com/api.php.

The required TaxiFareFinder API key can be requested at https://www.taxifarefinder.com/contactus.php.

Usage #

import 'package:taxifarefinder/taxifarefinder.dart';

var taxiFareFinder = TaxiFareFinder('<YOUR API KEY>');

// Find the nearest city supported by the TaxiFareFinder API
// A complete list if supported entities can be found at 
// https://www.taxifarefinder.com/api.php#entities
TffCity nearestCity = await taxiFareFinder.getNearestCity(13.736717, 100.523186);


// Get fare information like total fare, distance or tip information
TffFare fare = await taxiFareFinder.getFare(
    3.147948, 101.710347, 3.144169, 101.718519,
    traffic: TffTraffic.light);


// Retrieve a list of taxi companies in a supported city
List<TffTaxiCompany> companies = await taxiFareFinder.getTaxiCompanies('London');
0
likes
40
pub points
0%
popularity

Publisher

verified publishertomoehlrich.com

A Dart wrapper for the TaxiFareFinder API <https://www.taxifarefinder.com/api.php>

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

http, json_annotation

More

Packages that depend on taxifarefinder