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.
Retrieves a vector map tile at the specified zoom level and coordinates in Mapbox Vector Tile (MVT) format.
| zoom required | integer [ 0 .. 22 ] Example: 2 Tile zoom level. Determines the map detail level.
|
| 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). |
Binary vector tile data in MVT 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.
| zoom required | integer [ 0 .. 22 ] Example: 2 Tile zoom level. Determines the map detail level.
|
| 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). |
Binary vector tile data in PBF format