mirror of https://gitee.com/antv-l7/antv-l7
feat(dist):first commit
This commit is contained in:
parent
4df90815d2
commit
0967a2015b
49
README.md
49
README.md
|
@ -1,2 +1,47 @@
|
|||
# L7
|
||||
Large-scale WebGL-powered Geospatial Data Visualization
|
||||
# L7 Large-scale WebGL-powered Geospatial Data Visualization
|
||||
|
||||
![L7 官网](http://antv.alipay.com/zh-cn/l7/1.x/index.html)
|
||||
|
||||
|
||||
## 安装
|
||||
###
|
||||
### 加载高德地图
|
||||
|
||||
L7 目前底图采用高德地图,因此使用之前你还需还需要使用开发者 Key,你可以使用适用于『Web端』开发者 Key。如果没有可以点击 [这里申请](https://lbs.amap.com/dev/key/)。
|
||||
申请开发者 Key 是免费的。如果指定错误的版本号和开发者 Key,将无法加载 L7。目前最新版本请参考[这里](https://lbs.amap.com/api/loca-api/changelog),如果不指定版本号,则使用最新版本。
|
||||
在您的也面引入高德地图API
|
||||
```html
|
||||
<script src="https://webapi.amap.com/maps?v=1.4.8&key=您申请的key值"></script>
|
||||
```
|
||||
|
||||
|
||||
### HTML 引入 L7
|
||||
|
||||
既可以通过将脚本下载到本地也可以直接引入在线资源;
|
||||
|
||||
```html
|
||||
<!-- 引入在线资源 -->
|
||||
<script src="https://gw.alipayobjects.com/os/antv/pkg/_antv.l7-1.0.0/dist/l7.min.js"></script>
|
||||
```
|
||||
|
||||
### 通过 npm 安装
|
||||
|
||||
我们提供了 L7 npm 包,通过下面的命令即可完成安装
|
||||
|
||||
```bash
|
||||
npm i @antv/l7 --save
|
||||
```
|
||||
|
||||
成功安装完成之后,即可使用 `import` 或 `require` 进行引用。
|
||||
|
||||
```javascript
|
||||
import L7 from '@antv/l7';
|
||||
// 新建Scene
|
||||
```
|
||||
|
||||
![L7 官网](http://antv.alipay.com/zh-cn/l7/1.x/index.html)
|
||||
|
||||
|
||||
|
||||
|
||||
`因为相信,所以看见,L7 涵盖地理、数据、 图形、可视化、图像等多个技术领域,需要支撑各个业务领域的需求,而各个业务领域又会拥有独特的数据逻辑,业务逻辑,L7 建设才刚刚起步,还有很多功能需要持续打磨,还有很多技术难题需要攻克,我们将持续投入争取尽快开源发布正式版,欢迎更多的团队、同学参与进来。`
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue