Go to file
thinkinggis ce6207c7f9 Merge branch 'image' of https://github.com/antvis/L7 into image 2020-01-20 19:21:57 +08:00
.github docs(docs): add tutorial how to start demo locally 2019-12-02 11:12:30 +08:00
.storybook fix: pointlayer image 模糊&事件& marker add some new method 2020-01-20 19:20:47 +08:00
.vscode fix(fix confilict): conflict 2019-11-14 18:22:08 +08:00
build fix: rollup plugin 2019-12-30 20:06:12 +08:00
demos fix: fix docs js SyntaxError 2020-01-15 15:52:31 +08:00
dev-docs feat(map): adjust Scene API, use @antv/l7-maps instead 2019-11-26 17:51:29 +08:00
docs fix: pointlayer image 模糊&事件& marker add some new method 2020-01-20 19:20:47 +08:00
examples fix: pointlayer image 模糊&事件& marker add some new method 2020-01-20 19:20:47 +08:00
jest refactor: refactor with monorep architecture 2019-10-08 20:15:52 +08:00
packages fix: pointlayer image 模糊&事件& marker add some new method 2020-01-20 19:20:47 +08:00
site feat(component): 新增cluster marker 2020-01-17 00:40:37 +08:00
stories fix: pointlayer image 模糊&事件& marker add some new method 2020-01-20 19:20:47 +08:00
.editorconfig refactor: refactor with monorep architecture 2019-10-08 20:15:52 +08:00
.eslintrc docs(layer): add layer docs 2019-11-20 20:44:08 +08:00
.gitignore feat(source render): source transfrom, layer event 2019-12-12 00:35:15 +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 chore: 测试用例jest-electron 环境 & 修复一些文档问题 2020-01-13 21:14:08 +08:00
.yarnrc chore: add .yarnrc 2019-11-22 20:18:33 +08:00
CHANGELOG.md chore: udpate version 2020-01-02 22:16:38 +08:00
LICENSE.md docs: update add prettier readme 2019-12-08 11:41:52 +08:00
README.md Merge pull request #161 from antvis/setdata 2020-01-16 12:02:42 +08:00
README.zh-CN.md feat(component): 新增cluster marker 2020-01-17 00:40:37 +08:00
babel.config.js fix: 修复数据更新方法 2020-01-16 18:22:38 +08:00
commitlint.config.js docs(layer): add layer docs 2019-11-20 20:44:08 +08:00
gatsby-browser.js feat(map): adjust Scene API, use @antv/l7-maps instead 2019-11-26 17:51:29 +08:00
gatsby-config.js fix: layer add,remove enent 2020-01-19 20:22:30 +08:00
gatsby-node.js fix(gatsby): gastsby node 2019-12-02 19:01:56 +08:00
jest.config.js chore: 测试用例jest-electron 环境 & 修复一些文档问题 2020-01-13 21:14:08 +08:00
lerna.json chore: udpate version 2.0.5 2020-01-19 21:29:13 +08:00
package.json fix: popup service init 2020-01-20 12:14:49 +08:00
tsconfig.build.json 完善构建方案 & 容器 Bug 修复 (#84) 2019-11-25 15:27:56 +08:00
tsconfig.json docs: add animate docs 2019-12-31 19:17:29 +08:00
tslint.json fix: render 将gl模块移动到开发分支, update tslint rule 2019-12-17 14:37:28 +08:00
tslint.prod.json fix: render 将gl模块移动到开发分支, update tslint rule 2019-12-17 14:37:28 +08:00
tslint.test.json fix: render 将gl模块移动到开发分支, update tslint rule 2019-12-17 14:37:28 +08:00
yarn.lock fix: popup service init 2020-01-20 12:14:49 +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@beta

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.