Go to file
thinkinggis a667dbbb4e fix: update yarn.lock 2020-11-08 23:43:36 +08:00
.github chore: add surge preview 2020-11-08 18:09:48 +08:00
.storybook chore: 修改ts 相关配置 2020-10-08 23:24:08 +08:00
.vscode fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
build fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
demos fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
dev-docs fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
docs fix(layer): heatmap layer grid无法渲染squareColumn 3D图形问题 2020-08-20 17:36:17 +08:00
examples chore: upgrade gatsby theme 2020-11-08 18:09:42 +08:00
jest fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
packages chore: update version 2020-10-28 17:51:00 +08:00
site fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
stories fix: eslint error 2020-10-15 15:53:24 +08:00
.editorconfig fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
.eslintrc fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
.gitignore fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
.gitleaks.toml fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
.prettierrc fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
.stylelintrc fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
.travis.yml fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
.yarnrc fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
CHANGELOG.md fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
LICENSE.md fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
README.md fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
README.zh-CN.md fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
babel.config.js fix: outdated theme versions 2020-09-02 18:25:26 +08:00
commitlint.config.js fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
gatsby-browser.js fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
gatsby-config.js fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
gatsby-node.js fix: 暂时去除后处理 2020-10-26 17:46:10 +08:00
jest.config.js fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
lerna.json chore: publish 2020-10-28 17:48:57 +08:00
package.json fix: update yarn.lock 2020-11-08 23:43:36 +08:00
tsconfig.build.json chore: 修改ts 相关配置 2020-10-08 23:24:08 +08:00
tsconfig.json fix: 暂时去除后处理 2020-10-26 17:46:10 +08:00
tslint.json fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
tslint.prod.json fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
tslint.test.json fix(layer): point layer图片纹理浮点数据精度问题 2020-08-11 08:39:35 +08:00
yarn.lock fix: update yarn.lock 2020-11-08 23:43:36 +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.