https://docs.mapbox.com/vector-tiles/reference/
-
A broad collection of natural, built, and place data广泛收集的自然、建筑和地点数据 -
Global elevation data全球高程数据 -
Constantly updating traffic data不断更新交通数据 -
Open standard开放的标准
Vector tiles make huge maps fast while offering full design flexibility. The vector tile format is the vector data equivalent of raster image tiles for web mapping, with the strengths of tiling: optimized for caching, scaling, and serving map imagery rapidly.
矢量切片可以让巨大的地图变得更快,同时提供充分的设计灵活性。矢量切片格式是矢量数据,相当于用于web地图的光栅图像平铺,具有平铺的优点:针对缓存、缩放和快速服务地图图像进行了优化。
The Mapbox-owned vector tilesets described in this documentation are freely available for developers to use as data sources. Mapbox-maintained styles use these tilesets as data sources.
本文档中描述的Mapbox拥有的向量tileset可提供给开发人员用作数据源。Mapbox维护的样式将这些平铺集用作数据源。
These vector tile reference documents include information to help you style the data from each tileset. You can refer to these documents to find information about layers, data fields, data sources, and more.
这些矢量切片参考文档包含帮助您设置每个平铺集数据样式的信息。您可以参考这些文档来查找有关图层、数据字段、数据源等的信息。
How web maps work网络地图是如何工作的
Traditionally, maps are created from image tiles. Like for instance this PNG image tile depicting the corner of lower Manhattan with roads, building footprints, and parks:
传统地,地图是使用图片切片制作的。例如这张PNG图像切片描述了曼哈顿的一角,包含道路、建筑物和公园:
To get the underlying vector tile data that makes up this image, you can request it specifically:
要获取构成此图像的底层矢量平铺数据,可以特别请求它:
http://a.tiles.mapbox.com/v4/mapbox.mapbox-streets-v8/14/4823/6160.mvt?access_token=<your access token>
As the name suggests, vector tiles contain vector data instead of the rendered image. They contain geometries and metadata — like road names, place names, house numbers — in a compact, structured format. Vector tiles are rendered only when requested by a client, like a web browser or a mobile app. Rendering happens either in 顾名思义,矢量平铺包含矢量数据,而不是渲染图像。它们以紧凑、结构化的格式包含几何图形和元数据,如道路名称、地名、房屋编号。矢量图块仅在客户端(如web浏览器或移动应用程序)请求时呈现。渲染可以在客户端(Mapbox GL JS、Mapbox iOS SDK、Mapbox Android SDK)中进行,也可以在服务器(map API)上动态进行。阅读Mapbox矢量平铺规范以了解更多信息。(矢量切片可以提前切好,也可以实时生成)