java map vector_mapbox-vector-tile-java

MapBox Vector Tile - Java

mapbox-vector-tile-java.svg?branch=master

Contents

Overview

Provides:

protoc generated model for Mapbox Vector Tiles v2.1.

Provides MVT encoding through use of the Java Topology Suite (JTS).

Android API level 15 compatibility (as of version 3.0.0).

See:

Dependency

Maven

Latest version using JTS 15 with android API level 15 support:

com.wdtinc

mapbox-vector-tile

3.1.1

JTS 14 with no android support:

com.wdtinc

mapbox-vector-tile

2.0.0

Gradle

Latest version using JTS 15 with android API level 15 support:

compile 'com.wdtinc:mapbox-vector-tile:3.1.1'

JTS 14 with no android support:

compile 'com.wdtinc:mapbox-vector-tile:2.0.0'

Reading MVTs

Per-tile geometry conversion overview:

8bb36ec2707ef2daa6b0ac1b33f6babb.png

Use MvtReader.loadMvt() to load MVT data from a path or input stream

into JTS geometry. The TagKeyValueMapConverter instance will convert

MVT feature tags to a Map with primitive values. The map will be

stored as a JTS geometry user data object within the Geometry.

The JtsMvt object wraps the JTS Geometry with MVT layer information

and structure.

GeometryFactory geomFactory = new GeometryFactory();

JtsMvt jtsMvt = MvtReader.loadMvt(

Paths.get("path/to/your.mvt"),

geomFactory,

new TagKeyValueMapConverter());

// Allow negative-area exterior rings with classifier

// (recommended for Mapbox compatibility)

JtsMvt jtsMvt = MvtReader.loadMvt(

Paths.get("path/to/your.mvt"),

geomFactory,

new TagKeyValueMapConverter(),

MvtReader.RING_CLASSIFIER_V1);

Building and Writing MVTs

Per-layer geometry conversion overview:

c8736b0063a9810df372f173efb59f42.png

1) Create or Load JTS Geometry

Create or load any JTS Geometry that will be included in the MVT. The Geometries are assumed

to be in the global/world units for your target projection. Example: meters for EPSG:3857.

2) Create Tiled JTS Geometry in MVT Coordinates

Create tiled JTS geometry with JtsAdapter#createTileGeom(). MVTs currently

do not support feature collections so any JTS geometry collections will be flattened

to a single level. A TileGeomResult will contain the world/global intersection

geometry from clipping as well as the actual MVT geometry that uses

tile extent coordinates. The intersection geometry can be used for hierarchical

processing, while the extent geometry is intended to be encoded as the tile geometry.

Keep in mind that MVTs use local 'screen coordinates' with inverted y-axis compared with cartesian.

IGeometryFilter acceptAllGeomFilter = geometry -> true;

Envelope tileEnvelope = new Envelope(0d, 100d, 0d, 100d); // TODO: Your tile extent here

MvtLayerParams layerParams = new MvtLayerParams(); // Default extent

TileGeomResult tileGeom = JtsAdapter.createTileGeom(

jtsGeom, // Your geometry

tileEnvelope,

geomFactory,

layerParams,

acceptAllGeomFilter);

JavaDoc for JtsAdapter.createTileGeom()

/**

* Create geometry clipped and then converted to MVT 'extent' coordinates. Result

* contains both clipped geometry (intersection) and transformed geometry for encoding to MVT.

*

*

Uses the same tile and clipping coordinates. May cause rendering issues on boundaries for polygons

* or line geometry depending on styling.

*

* @param g original 'source' geometry

* @param tileEnvelope world coordinate bounds for tile

* @param geomFactory creates a geometry for the tile envelope

* @param mvtLayerParams specifies vector tile properties

* @param filter geometry values that fail filter after transforms are removed

* @return tile geometry result

* @see TileGeomResult

*/

public static TileGeomResult createTileGeom(Geometry g,

Envelope tileEnvelope,

GeometryFactory geomFactory,

MvtLayerParams mvtLayerParams,

IGeometryFilter filter)

3) Create MVT Builder, Layers, and Features

After creating a tile's geometry in step 2, it is ready to be encoded in a MVT protobuf.

Note: Applications can perform step 2 multiple times to place geometry in separate MVT layers.

Create the VectorTile.Tile.Builder responsible for the MVT protobuf

byte array. This is the top-level object for writing the MVT:

VectorTile.Tile.Builder tileBuilder = VectorTile.Tile.newBuilder();

Create an empty layer for the MVT using the MvtLayerBuild#newLayerBuilder() utility function:

VectorTile.Tile.Layer.Builder layerBuilder = MvtLayerBuild.newLayerBuilder("myLayerName", layerParams);

MVT JTS Geometry from step 2 need to be converted to MVT features.

MvtLayerProps is a supporting class for building MVT layer

key/value dictionaries. A user data converter will take JTS Geometry

user data (preserved during MVT tile geometry conversion) and convert it to MVT tags:

MvtLayerProps layerProps = new MvtLayerProps();

IUserDataConverter userDataConverter = new UserDataKeyValueMapConverter();

List features = JtsAdapter.toFeatures(tileGeom.mvtGeoms, layerProps, userDataConverter);

Use MvtLayerBuild#writeProps() utility function after JtsAdapter#toFeatures() to add the key/value dictionary to the

MVT layer:

MvtLayerBuild.writeProps(layerBuilder, layerProps);

4) Write MVT

This example writes the MVT protobuf byte array to an output file.

VectorTile.Tile mvt = tileBuilder.build();

try {

Files.write(path, mvt.toByteArray());

} catch (IOException e) {

logger.error(e.getMessage(), e);

}

Buffering Polygons Beyond MVT Extent

For polygon geometry that will be styled with outlines, it is recommended that

the clipping area be larger than the tile extent area. This can be handled like

the example in MvtBuildTest#testBufferedPolygon(). Code example:

// Create input geometry

final GeometryFactory geomFactory = new GeometryFactory();

final Geometry inputGeom = buildPolygon(RANDOM, 200, geomFactory);

// Build tile envelope - 1 quadrant of the world

final double tileWidth = WORLD_SIZE * .5d;

final double tileHeight = WORLD_SIZE * .5d;

final Envelope tileEnvelope = new Envelope(0d, tileWidth, 0d, tileHeight);

// Build clip envelope - (10 * 2)% buffered area of the tile envelope

final Envelope clipEnvelope = new Envelope(tileEnvelope);

final double bufferWidth = tileWidth * .1f;

final double bufferHeight = tileHeight * .1f;

clipEnvelope.expandBy(bufferWidth, bufferHeight);

// Build buffered MVT tile geometry

final TileGeomResult bufferedTileGeom = JtsAdapter.createTileGeom(

JtsAdapter.flatFeatureList(inputGeom),

tileEnvelope, clipEnvelope, geomFactory,

DEFAULT_MVT_PARAMS, ACCEPT_ALL_FILTER);

// Create MVT layer

final VectorTile.Tile mvt = encodeMvt(DEFAULT_MVT_PARAMS, bufferedTileGeom);

Examples

How to generate VectorTile class using vector_tile.proto

If vector_tile.proto is changed in the specification, VectorTile may need to be regenerated.

Command protoc version should be the same version as the POM.xml dependency.

protoc --java_out=src/main/java src/main/resources/vector_tile.proto

Extra .proto config

These options were added to the .proto file:

syntax = "proto2";

option java_package = "com.wdtinc.mapbox_vector_tile";

option java_outer_classname = "VectorTile";

Issues

Reporting

Use the Github issue tracker.

Known Issues

Creating tile geometry with non-simple line strings that self-cross in many places will be 'noded' by JTS during an intersection operation. This results in ugly output.

Invalid or non-simple geometry may not work correctly with JTS operations when creating tile geometry.

Contributing

License

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值