An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

[![pub package](https://img.shields.io/pub/v/cartography.svg)](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);
```