mirror of https://gitee.com/antv-l7/antv-l7
docs: add blank map 使用教程
This commit is contained in:
parent
0a824e05e3
commit
78dd68aca3
|
@ -0,0 +1,27 @@
|
||||||
|
---
|
||||||
|
title: Blank BaseMap With Mapbox
|
||||||
|
order: 2
|
||||||
|
---
|
||||||
|
|
||||||
|
很多情况下我们只是做些简单的地理可视化,不需要加载地图.
|
||||||
|
本教程就是告诉大家如果在L7中使用无底图模式。
|
||||||
|
|
||||||
|
L7 在地图样式层面增加了无底图样式```blank``` 无底图模式
|
||||||
|
|
||||||
|
😃不需要使用mapbox token 拿来就用,不要注册mapbox账户
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
const scene = new Scene({
|
||||||
|
id: 'map',
|
||||||
|
map: new Mapbox({
|
||||||
|
style: 'blank',
|
||||||
|
center: [ 103.83735604457024, 1.360253881403068 ],
|
||||||
|
pitch: 4.00000000000001,
|
||||||
|
zoom: 10.210275860702593,
|
||||||
|
rotation: 19.313180925794313
|
||||||
|
})
|
||||||
|
});
|
||||||
|
```
|
||||||
|
如果你只是需要做个中国地图,世界地图这样填充图,建议你采用这样的模式
|
||||||
|
|
||||||
|
离线,无token使用 ![mapbox demo](https://codesandbox.io/embed/frosty-architecture-tv6uv?fontsize=14&hidenavigation=1&theme=dark)
|
|
@ -0,0 +1,27 @@
|
||||||
|
---
|
||||||
|
title: 使用无地图模式
|
||||||
|
order: 2
|
||||||
|
---
|
||||||
|
|
||||||
|
很多情况下我们只是做些简单的地理可视化,不需要加载地图.
|
||||||
|
本教程就是告诉大家如果在L7中使用无底图模式。
|
||||||
|
|
||||||
|
L7 在地图样式层面增加了无底图样式```blank``` 无底图模式
|
||||||
|
|
||||||
|
😃不需要使用mapbox token 拿来就用,不要注册mapbox账户
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
const scene = new Scene({
|
||||||
|
id: 'map',
|
||||||
|
map: new Mapbox({
|
||||||
|
style: 'blank',
|
||||||
|
center: [ 103.83735604457024, 1.360253881403068 ],
|
||||||
|
pitch: 4.00000000000001,
|
||||||
|
zoom: 10.210275860702593,
|
||||||
|
rotation: 19.313180925794313
|
||||||
|
})
|
||||||
|
});
|
||||||
|
```
|
||||||
|
如果你只是需要做个中国地图,世界地图这样填充图,建议你采用这样的模式
|
||||||
|
|
||||||
|
离线,无token使用 ![mapbox demo](https://codesandbox.io/embed/frosty-architecture-tv6uv?fontsize=14&hidenavigation=1&theme=dark)
|
Loading…
Reference in New Issue