Skip to content
🌎 Large-scale WebGL-powered Geospatial Data Visualization
TypeScript GLSL CSS JavaScript
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github docs(docs): add tutorial how to start demo locally Dec 2, 2019
.storybook Merge branch 'source' of https://github.com/antvis/L7 into source Dec 7, 2019
.vscode fix(doc): file name lowercase Nov 22, 2019
build 完善构建方案 & 容器 Bug 修�? (#84) Nov 25, 2019
demos docs: prettier docs js Dec 2, 2019
dev-docs feat(map): adjust Scene API, use @antv/l7-maps instead Nov 26, 2019
docs docs: update docs l7 cdn version Dec 8, 2019
examples feat(source): wip cluster Dec 4, 2019
jest fix(doc): file name lowercase Nov 22, 2019
packages refactor: update version Dec 8, 2019
site Update index.zh.tsx Nov 25, 2019
stories fix(lint): igonre lint test data lint Dec 7, 2019
.editorconfig fix(doc): file name lowercase Nov 22, 2019
.eslintrc fix(doc): file name lowercase Nov 22, 2019
.gitignore Merge branch 'source' of https://github.com/antvis/L7 into source Dec 8, 2019
.prettierrc fix(doc): file name lowercase Nov 22, 2019
.stylelintrc fix(doc): file name lowercase Nov 22, 2019
.travis.yml 修�? Windows 环境开�?�问题 (#109) Nov 29, 2019
.yarnrc chore: add .yarnrc Nov 22, 2019
CHANGELOG.md refactor: update version Dec 8, 2019
LICENSE.md docs: update add prettier readme Dec 8, 2019
README.md docs: update add prettier readme Dec 8, 2019
README.zh-CN.md update readme Dec 8, 2019
babel.config.js build(babel): transpile according to browserslist, add `core-js` (#113) Dec 2, 2019
commitlint.config.js fix(doc): file name lowercase Nov 22, 2019
gatsby-browser.js feat(map): adjust Scene API, use @antv/l7-maps instead Nov 26, 2019
gatsby-config.js fix(parser): fix multipolygom parser Dec 2, 2019
gatsby-node.js fix(gatsby): gastsby node Dec 2, 2019
jest.config.js 修�? Windows 环境开�?�问题 (#109) Nov 29, 2019
lerna.json refactor: update version Dec 8, 2019
package.json docs: update docs l7 cdn version Dec 8, 2019
tsconfig.build.json 完善构建方案 & 容器 Bug 修�? (#84) Nov 25, 2019
tsconfig.json docs: add josn api Dec 7, 2019
tslint.json fix(doc): file name lowercase Nov 22, 2019
tslint.prod.json fix(lint): igonre lint test data lint Dec 7, 2019
tslint.test.json fix(lint): igonre lint test data lint Dec 7, 2019
yarn.lock refactor: update version Dec 8, 2019

README.md

L7

travis ci 最近�??交

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

中文 README

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 expressiveness,interaction 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.

You can’t perform that action at this time.