Vector Tile
GET
/tile/service={service}/{service]/{z}/{x}/{y}.mvtLast modified: 2 months ago
When people say "vector tiles", they almost always mean tiles in a data format called Mapbox Vector Tiles or MVT. The Mapbox Vector Tile Specification defines this file format. Mapbox also offers a guide with visuals explaining how the format works.
At a high level, MVT tiles provide an efficient binary encoding for map features. Features have geometries (which can be points, lines, or polygons, similar to GeoJSON) and may also have attributes (key-value pairs, where keys are strings and values are strings, ints, floats, or booleans). MVT provides a compact binary encoding of this data, based on the Protobuf binary serialization format.
Request
Path Params
service
enum<string>
required
Tile service name.
Allowed values:
faainsightstfradvisory
z
integer
required
x
integer
required
y
integer
required
Query Params
key
string
required
Unique alphanumeric key.
Request samples
Responses
OK(200)
Record Not Found(404)
HTTP Code: 200
Content Type : Binaryapplication/octet-stream
Example
Not configured
Last modified: 2 months ago