mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-02-02 01:08:14 +00:00
Fix the tile layer version number in tile-join output
This commit is contained in:
parent
d170ebc312
commit
c40ec6c194
@ -1,3 +1,7 @@
|
||||
## 1.12.1
|
||||
|
||||
* Fix incorrect tile layer version numbers in tile-join output
|
||||
|
||||
## 1.12.0
|
||||
|
||||
* Fix a tile-join bug that would retain fields that were supposed to be excluded
|
||||
|
4
mvt.cpp
4
mvt.cpp
@ -166,6 +166,10 @@ bool mvt_tile::decode(std::string &message) {
|
||||
layer.extent = layer_reader.get_uint32();
|
||||
break;
|
||||
|
||||
case 15: /* version */
|
||||
layer.version = layer_reader.get_uint32();
|
||||
break;
|
||||
|
||||
case 2: /* feature */
|
||||
{
|
||||
protozero::pbf_reader feature_reader(layer_reader.get_message());
|
||||
|
@ -1 +1 @@
|
||||
#define VERSION "tippecanoe v1.12.0\n"
|
||||
#define VERSION "tippecanoe v1.12.1\n"
|
||||
|
Loading…
x
Reference in New Issue
Block a user