Vector Tiles API (1.0.0)

Vector Tiles API provides access to Magic Lane vector map tiles in Slippy tile format. Vector tiles contain geographic data encoded using the Mapbox Vector Tile (MVT) specification, enabling client-side rendering with dynamic styling, smooth zooming, and efficient map display.

Vector Tiles

Get a vector tile in MVT format

Retrieves a vector map tile at the specified zoom level and coordinates in Mapbox Vector Tile (MVT) format.

Authorizations:
ApiKeyHeaderApiKeyQuery
path Parameters
zoom
required
integer [ 0 .. 22 ]
Example: 2

Tile zoom level. Determines the map detail level.

  • At zoom 0, the entire world is represented by a single tile.
  • Each zoom level doubles the number of tiles in each dimension.
  • The number of tiles at each zoom level is 2^zoom × 2^zoom.
x
required
integer >= 0
Example: 2

Tile column (X coordinate) in Slippy tile format. Starts from 0 at the left (west) edge. Valid range: 0 to (2^zoom - 1).

y
required
integer >= 0
Example: 1

Tile row (Y coordinate) in Slippy tile format. Starts from 0 at the top (north) edge. Valid range: 0 to (2^zoom - 1).

Responses

Response Schema: application/vnd.mapbox-vector-tile
string <binary>

Binary vector tile data in MVT format

Get a vector tile in PBF format

Retrieves a vector map tile at the specified zoom level and coordinates in Protocol Buffers (PBF) format. This is equivalent to the MVT format.

Authorizations:
ApiKeyHeaderApiKeyQuery
path Parameters
zoom
required
integer [ 0 .. 22 ]
Example: 2

Tile zoom level. Determines the map detail level.

  • At zoom 0, the entire world is represented by a single tile.
  • Each zoom level doubles the number of tiles in each dimension.
  • The number of tiles at each zoom level is 2^zoom × 2^zoom.
x
required
integer >= 0
Example: 2

Tile column (X coordinate) in Slippy tile format. Starts from 0 at the left (west) edge. Valid range: 0 to (2^zoom - 1).

y
required
integer >= 0
Example: 1

Tile row (Y coordinate) in Slippy tile format. Starts from 0 at the top (north) edge. Valid range: 0 to (2^zoom - 1).

Responses

Response Schema: application/x-protobuf
string <binary>

Binary vector tile data in PBF format