mapchart 0.1.0
mapchart: ^0.1.0 copied to clipboard
Map chart widget for Flutter.
Map Chart #
This package is still in alpha, but I will release a usable version in the next few days. Don't worry, it won't be long! ;-)
- Displays GeoJSON geometries
- Multi resolution with geometry simplification

Get started #
Reading GeoJSON from String
List<MapGeometry> geometries = await MapGeometry.fromGeoJSON(geojson);
MapChartDataSource dataSource = MapChartDataSource(geometries);
Creating the Widget
Container(
child: MapChart(dataSource: dataSource),
decoration: BoxDecoration(border: Border.all(color: Colors.black);
Agenda for the next few days #
- Release the final version (1.0.0). The API may have some small changes.