mapbox_api

Last updated:

0 purchases

mapbox_api Image
mapbox_api Images
Add to Cart

Description:

mapbox api

mapbox_api #
This package aim to :

be a Dart SDK for Mapbox API with only http as dependency
follow the official documentation

Examples #
See examples/ for all available examples
import 'package:mapbox_api/mapbox_api.dart';

MapboxApi mapbox = MapboxApi(
accessToken: '<Mapbox API token>',
);
copied to clipboard

Get your API token on mapbox.com

Request directions services
final response = await mapbox.directions.request(
profile: NavigationProfile.DRIVING_TRAFFIC,
overview: NavigationOverview.FULL,
geometries: NavigationGeometries.GEOJSON,
steps: true,
coordinates: <List<double>>[
<double>[
37.786060, // latitude
-122.246225, // longitude
],
<double>[
37.785939, // latitude
-122.194292, // longitude
],
],
);

if (response.error == null) {
// response.routes ...
// response.waypoints ...
}
copied to clipboard

see basic example: example/example.dart
see full example with flutter_gl: example/example_directions_flutter.dart

Request forward geocoding services
final response = await mapbox.forwardGeocoding.request(
searchText: 'tour eiffel',
fuzzyMatch: true,
language: 'fr',
proximity: <double>[
48.858638, // latitude
2.286020, // longitude
],
);

if (response.error == null) {
// response.features ...
}
copied to clipboard

see full example : example/example_forward_search.dart

Supported API #
Maps #



Service
Implemented




Vector Tiles
✖️


Taster Tiles
✖️


Static Images
✖️


Static Tiles
✖️


Styles
✖️


Tilequery
✖️


Uploads
✖️


Mapbox Tiling Service
✖️


Datasets
✖️


Fonts
✖️



Navigation #



Service
Implemented
Example




Directions

example/example.dart example/example_directions_flutter.dart


Isochrone




Map Matching




Matrix




Optimization





Search #



Service
Implemented
Batch
Example




Forward Geocoding


example/example_forward_search.dart


Reverse Geocoding


example/example_reverse_search.dart


Intersection

✖️
example/example_intersection_search.dart



Accounts #



Service
Implemented




Tokens
✖️



Related Packages #
This SDK will work perfectly with flutter-mapbox-gl to display retrieved data (will work with any other package too).
You may also need polyline package to convert polylines strings to coordinates.

License:

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

Files In This Product:

Customer Reviews

There are no reviews.