Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mapbox/mapnik-vector-tile into in…
Browse files Browse the repository at this point in the history
…clude-clipper-in-coverage
  • Loading branch information
Dane Springmeyer committed Mar 3, 2016
2 parents 7dde584 + 99e1d95 commit 298a559
Show file tree
Hide file tree
Showing 8 changed files with 210 additions and 19 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,19 @@
# Changelog

## 1.0.3

- Updated the version of clipper after a bug was found in clipper that would result in invalid polygons where interior rings were outside another exterior ring.
- Fixed a bug in `bench/vtile-encode.cpp`
- Fixed an issue with mapnik core no longer having `to_utf8` in the same directory in `vector_tile_layer.ipp`

## 1.0.2

- Added more errors and checks to `vector_tile_is_valid.hpp`

## 1.0.1

- Updated to protozero v1.3.0

## 1.0.0

Extensive redesign in mapnik-vector-tile to properly support 2.0 of the [Mapbox Vector Tile specification](https://github.com/mapbox/vector-tile-spec/). A large number of changes have occured but a summary of these changes can be described as:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
@@ -1,7 +1,7 @@
MAPNIK_PLUGINDIR := $(shell mapnik-config --input-plugins)
BUILDTYPE ?= Release

CLIPPER_REVISION=7484da1e7caf3250aa091925518f4fac91c05784
CLIPPER_REVISION=b82601d67830a84179888360e3dea645c1125a26
PROTOZERO_REVISION=v1.3.0
GYP_REVISION=3464008

Expand Down
4 changes: 2 additions & 2 deletions bench/vtile-encode.cpp
Expand Up @@ -84,8 +84,8 @@ int main(int argc, char** argv)
auto ds_1 = mapnik::datasource_cache::instance().create(params_1);

// Query
mapnik::box2d<double> query_ext(std::numeric_limits<double>::min(),
std::numeric_limits<double>::min(),
mapnik::box2d<double> query_ext(std::numeric_limits<double>::lowest(),
std::numeric_limits<double>::lowest(),
std::numeric_limits<double>::max(),
std::numeric_limits<double>::max());
mapnik::query q(query_ext);
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "mapnik-vector-tile",
"version": "1.0.0",
"version": "1.0.3",
"description": "Mapnik Vector Tile API",
"main": "./package.json",
"repository" : {
Expand Down

0 comments on commit 298a559

Please sign in to comment.