Skip to main content

Changelog

All notable changes to Maps & 3DScene APIs will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Offline Maps API

[1.0.0] - 2026-07-24

This API is the successor of the legacy offline maps service hosted at offlinemaps.magiclane.com. If you were using that service, this is the same API on new infrastructure: the legacy single /api endpoint is now split into versions, file_list, and download, while request parameters (capability, map_version, download/path, content_id, country_iso, country_name, state, map_type) and authentication (authToken/authSecret or the Authorization header) are unchanged.

Added

  • Initial release of the Offline Maps API, migrated from offlinemaps.magiclane.com
  • GET /offline_maps/versions endpoint for listing map versions compatible with an SDK capability
  • GET /offline_maps/file_list endpoint for browsing the downloadable map catalog of a version, with CRC32 / MD5 / SHA-256 integrity checksums per file
  • GET /offline_maps/download endpoint for downloading map files by path, content id, or country/state, including the world basemap
  • Resumable downloads via HTTP Range requests (206 Partial Content)
  • Conditional requests via ETag / If-None-Match and Last-Modified / If-Modified-Since (304 Not Modified)
  • GET, HEAD, and POST (application/x-www-form-urlencoded) support on all endpoints
  • Token + secret authentication via Authorization header or authToken/authSecret query parameters
  • Custom map catalog support for provisioned accounts, with map_type=standard override

Vector Tiles API

[1.0.0] - 2026-01-30

Added

  • Initial release of the Vector Tiles API
  • GET /tiles/{zoom}/{x}/{y}.{format} endpoint for retrieving vector map tiles
  • Support for Slippy tile format coordinates (zoom/x/y)
  • Support for .mvt (Mapbox Vector Tile) output format
  • Support for .pbf (Protocol Buffers) output format
  • Token-based authentication via Authorization header