Last updated:
0 purchases
mapsm lv dart
Mapbox-gl wrapper for Dart #
Library to use Mapbox GL JS from Dart. Working examples here: https://andrea689.github.io/mapbox-gl-dart/
Using this package #
You must include Mapbox GL JS into your .html file
to be able to use this package.
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v2.5.1mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v2.5.1/mapbox-gl.css' rel='stylesheet'/>
copied to clipboard
In the body add a container for the map.
<body>
<div id='map'></div>
</body>
copied to clipboard
In the dart file initialize the map.
import 'package:mapsm_lv_dart/mapsm_lv_dart.dart' as mapboxgl;
void main() {
Mapbox.accessToken = 'YOUR_TOKEN_HERE';
var map = MapboxMap(
MapOptions(
container: 'map',
style: 'https://api.mapsm.net/files/sdk/stylev35.json',
center: LngLat(7.68227, 45.06755),
zoom: 12,
),
);
}
copied to clipboard
Examples #
You can find many examples in the example folder.
Run example #
pub global activate webdev
webdev serve example:8081
Open browser to localhost:8081
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.