Go to file
thinkinggis 238fba3042 fix(event): add touch event
支持touch事件,移动端交互
2019-09-02 17:29:11 +08:00
.github feat(src): threejs render 2018-10-23 19:32:42 +08:00
bin feat(src): threejs render 2018-10-23 19:32:42 +08:00
bundler feat(src): threejs render 2018-10-23 19:32:42 +08:00
demos 修复 removelayer 清除交互事件的bug 2019-08-26 15:36:59 +08:00
rollup rollup 2019-03-01 14:54:05 +08:00
src fix(event): add touch event 2019-09-02 17:29:11 +08:00
test fix(src): lint err 2019-08-01 20:40:09 +08:00
.babelrc fix(test): use the proper version of torchjs and babel, etc. 2018-10-31 16:24:32 +08:00
.editorconfig feat(src): threejs render 2018-10-23 19:32:42 +08:00
.eslintignore fix(geojson): geometry is null 2019-04-23 10:22:22 +08:00
.eslintrc fix(lint): lint warning 2019-08-07 19:18:36 +08:00
.gitignore fix gitignore 2019-09-02 16:20:20 +08:00
.npmignore 新增map blank 主题既不含底图 2019-08-31 23:52:45 +08:00
.torch.compile.opts.js update three 2019-02-27 16:44:33 +08:00
.travis.yml fix(travis); update node version 2019-08-13 17:43:49 +08:00
CHANGELOG.md update readme 2019-08-07 18:10:58 +08:00
CONTRIBUTING.md feat(src): threejs render 2018-10-23 19:32:42 +08:00
CONTRIBUTING.zh-CN.md feat(src): threejs render 2018-10-23 19:32:42 +08:00
LICENSE merge source code 2019-08-07 17:42:57 +08:00
README.md update readme 修改高德API版本 2019-08-28 11:04:49 +08:00
README.zh-CN.md feat(src): threejs render 2018-10-23 19:32:42 +08:00
package.json test 2019-09-02 16:27:10 +08:00
rollup.config.js scene 新增设置地图要素方法,新增导出图片方法 2019-08-30 16:53:08 +08:00

README.md

L7 Large-scale WebGL-powered Geospatial Data Visualization

L7官网 版本 最近提交

安装

加载高德地图

L7 目前底图采用高德地图,因此使用之前你还需要使用开发者 Key你可以使用适用于『Web端』开发者 Key。如果没有可以点击 这里申请。 申请开发者 Key 是免费的。如果指定错误的版本号和开发者 Key将无法加载 L7。目前最新版本请参考这里,如果不指定版本号,则使用最新版本。 在你的页面引入高德地图API

<script src="https://webapi.amap.com/maps?v=1.4.15&key=您申请的key值"></script>

HTML 引入 L7

既可以通过将脚本下载到本地也可以直接引入在线资源;

<!-- 引入在线资源 -->
<script src="https://gw.alipayobjects.com/os/antv/pkg/_antv.l7-1.3.1/dist/l7.min.js"></script>

通过 npm 安装

我们提供了 L7 npm 包,通过下面的命令即可完成安装

npm i @antv/l7 --save

成功安装完成之后,即可使用 import 或 require 进行引用。

import * as  L7 from '@antv/l7';
// 新建Scene

L7官网

L7

Development

$ npm install

# run test case
$ npm run test-live

# build watching file changes and run demos
$ npm run start

# run demos
$ npm run demos