https://github.com/xclud/dart_cartography
Cartography for Flutter. Paint vector tiles on the Map.
https://github.com/xclud/dart_cartography
cartography dart flutter map vector-tiles
Last synced: 3 months ago
JSON representation
Cartography for Flutter. Paint vector tiles on the Map.
- Host: GitHub
- URL: https://github.com/xclud/dart_cartography
- Owner: xclud
- License: mit
- Created: 2022-06-30T08:02:34.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-07T09:10:12.000Z (about 4 years ago)
- Last Synced: 2025-01-09T05:17:23.310Z (over 1 year ago)
- Topics: cartography, dart, flutter, map, vector-tiles
- Language: C++
- Homepage: https://pub.dev/packages/cartography
- Size: 82 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://pub.dartlang.org/packages/cartography)
Vector tile extension for [Map](https://pub.dev/packages/map) package. Paint vector tiles layers on the Map.
## Features
* VectorTile
* Layer
* Feature
* Geometry
* Properties
## Getting started
In your `pubspec.yaml` file add:
```dart
dependencies:
cartography: any
```
## Usage
In your code import:
```dart
import 'package:cartography/cartography.dart';
```
Then:
```dart
final tile = VectorTile.fromBytes(fileContents);
```