Crates.io | vectortile |
lib.rs | vectortile |
version | 0.2.2 |
source | src |
created_at | 2017-06-09 00:11:35.218472 |
updated_at | 2018-09-27 04:33:33.697214 |
description | Library for encoding Mapbox Vector Tiles |
homepage | |
repository | https://github.com/wyyerd/vectortile-rs |
max_upload_size | |
id | 18270 |
size | 87,769 |
Rust library for building Mapbox Vector Tiles from PostGIS. This library was adapted from the MVT implementation in Pirmin Kalberer's t-rex server, with changes intended to improve usage ergonamics.
Put this in your Cargo.toml
:
[dependencies]
vectortile = "0.2.1"
And this in your crate root:
extern crate vectortile;
See examples/streets.rs for a full example w/ PostGIS.
This example shows creating Features and Tiles programmatically:
use vectortile::{Tile, Layer, Feature, Value};
use vectortile::geom::{Geometry, Point};
use vectortile::grid::{Grid, Extent};
use postgis::ewkb;
// Build a new tile, the hard way
let bbox = Extent{minx: 958826.08, miny: 5987771.04, maxx: 978393.96, maxy: 6007338.92};
let mut tile = Tile::new(&bbox);
let mut layer = Layer::new("place");
tile.add_layer(layer);
// Add a new point feature "Ed's Mospresso Shack"
let geom: Geometry = ewkb::GeometryT::Point(Point::new(960000.0, 6002729.0, Some(3857)));
let mut feature = Feature::new(geom);
feature.add_property("place", Value::String(String::from("business")));
feature.add_property("name", Value::String(String::from("Ed's Mospresso Shack")));
layer.add_feature(feature);
// Encode the tile as protobuf and inspect it
let grid = Grid::wgs84();
let data = tile.encode(&grid);
println!("{:#?}", data);