Go to file
thinkinggis 95e6be4fad chore: update version 2021-05-31 21:00:30 +08:00
.github [push, pull_request_target] => pull_request 2021-02-19 11:12:15 +08:00
.storybook feat: centet 增加padding 功能 2021-04-06 18:00:53 +08:00
.vscode fix(fix confilict): conflict 2019-11-14 18:22:08 +08:00
build chore(rollup): 更新rollup 配置 2021-02-28 14:53:44 +08:00
demos fix: site react example 2020-03-08 15:40:22 +08:00
dev-docs [ImgBot] Optimize images 2020-03-08 07:08:27 +00:00
docs docs: 更新文档 2021-05-31 20:59:19 +08:00
examples feat: 补充官网文档:boxSelect 2021-05-31 20:39:15 +08:00
jest refactor: refactor with monorep architecture 2019-10-08 20:15:52 +08:00
packages chore: update version 2021-05-31 21:00:30 +08:00
site docs: update docs 2020-03-14 12:31:09 +08:00
stories docs: 更新文档 2021-05-31 20:59:19 +08:00
.editorconfig refactor: refactor with monorep architecture 2019-10-08 20:15:52 +08:00
.eslintrc chore(package): update babel-eslint version 2020-05-19 14:15:34 +08:00
.gitignore fix: rm yarn.lock 2021-04-19 19:29:46 +08:00
.gitleaks.toml chore: add gitleaks 2020-04-21 11:28:10 +08:00
.prettierrc refactor: refactor with monorep architecture 2019-10-08 20:15:52 +08:00
.stylelintrc refactor: refactor with monorep architecture 2019-10-08 20:15:52 +08:00
.travis.yml Merge branch 'master' into draw_doc 2020-04-21 15:27:03 +08:00
.yarnrc chore: add .yarnrc 2019-11-22 20:18:33 +08:00
CHANGELOG.md chore: publish 2020-04-10 19:43:19 +08:00
LICENSE.md docs: update add prettier readme 2019-12-08 11:41:52 +08:00
README.md fix: link fix 2021-04-25 20:10:55 +08:00
README.zh-CN.md docs: 更新文档 2021-04-14 00:39:07 +08:00
babel.config.js docs: 更新文档 2021-04-14 00:39:07 +08:00
commitlint.config.js docs(layer): add layer docs 2019-11-20 20:44:08 +08:00
gatsby-browser.js style: import antd less 2020-05-20 11:06:51 +08:00
gatsby-config.js feat: 2.4 beta 2021-05-27 19:53:22 +08:00
gatsby-node.js fix: 暂时去除后处理 2020-10-26 17:46:10 +08:00
jest.config.js chore(boundry): rename distict->boundry 测试用例不识别 2020-05-27 20:34:39 +08:00
lerna.json chore: publish 2021-05-31 20:55:57 +08:00
package.json fix: 修复本地启动项目后案例编辑页报错 2021-04-25 19:54:32 +08:00
tsconfig.build.json chore: 更新打包配置 2021-02-28 12:20:46 +08:00
tsconfig.json feat(layers): 点图层支持offset 2020-11-18 17:40:37 +08:00
tslint.json feat(layers): 点图层支持offset 2020-11-18 17:40:37 +08:00
tslint.prod.json fix(scene): 高清方案DPR 2021-01-12 11:36:52 +08:00

README.md

L7

. travis ci 最近提交

Large-scale WebGL-powered Geospatial data visualization analysis framework.

中文 README

GitHub

Powered by WebGL, the rendering technology of L7 supports fast and efficient rendering of big data, 2D/3D rendering, possible through calculation and analysis of spatial data by GPU Parallel Compu-ting.

L7 focuses on geographic data expressivenessinteraction and design of geographic visualization layers. The basemaps on the platform are powered by third-party services

🌄 l7 visualization demos

l7 demo

🌟 Highlight features of L7 2.0

  • 🌏 Data-driven Visualization

    Layer visualization API design base Semiology of Graphics.

    It supports rich map visualization types for a better insight on data.

  • 🌏 High performance rendering with 2D/3D effect Real-time and dynamic rendering with millions of spatial data.

  • 🌏 Simple and flexible data format

    L7 supports a wide variety of data formats including CSV, JSON, geojson, among others, eliminating the need to run conversions ahead of time.

  • 🌏 Multi-basemap

    For global users, Mapbox is easy to be embedded by a simple line of code.

Getting Started

📦 Installation

npm install @antv/l7

Init Map by L7 scene

import { Scene } from '@antv/l7';
import { Mapbox } from '@antv/l7-maps';

const scene = new Scene({
  id: 'map',
  map: new Mapbox({
    style: 'light',
    pitch: 0,
    center: [107.054293, 35.246265],
    zoom: 4.056,
  }),
});

Add Layer

import { PointLayer } from '@antv/l7';

const pointLayer = new PointLayer()
  .source(data)
  .shape('circle')
  .size('mag', [1, 25])
  .color('mag', ['#5B8FF9', '#5CCEA1'])
  .style({
    opacity: 0.3,
    strokeWidth: 1,
  });

scene.addLayer(pointLayer);

📝 Documentation

License

MIT license.