在顶层街道层添加卫星图层

时间:2017-07-17 15:44:28

标签: mapbox-gl-js

如何以编程方式在街道图层顶部添加卫星图层。 这个演示使用预定义的样式Mapbox GL toggle satellite without setting style来实现我想要的,但我更喜欢以编程方式演示。

1 个答案:

答案 0 :(得分:2)

您可以像添加任何其他图层一样添加卫星图层。

map.addLayer({
  id: 'satellite',
  source: {"type": "raster",  "url": "mapbox://mapbox.satellite", "tileSize": 256},
  type: "raster"
}, 'optional_before_argument');

http://jsbin.com/cucemulala/1/edit?html,output