antv-l7/packages/l7
YiQianYao 050da8bc72
chore: update version 2.9.36 -> 2.9.37 (#1397)
Co-authored-by: shihui <yiqianyao.yqy@alibaba-inc.com>
2022-10-14 16:39:55 +08:00
..
__tests__ fix(heatmap): 修复热力图某些设备上黑色 fix #278 2020-04-09 20:54:39 +08:00
demo fix: IE11 兼容测试 (#1145) 2022-06-09 19:09:30 +08:00
src chore: update version 2.9.36 -> 2.9.37 (#1397) 2022-10-14 16:39:55 +08:00
.fatherrc.ts chore: replace storybook with dumi (#1256) 2022-08-08 16:41:30 +08:00
.gitignore fix(docs): merge master remove manual 2019-11-25 13:49:12 +08:00
CHANGELOG.md chore: publish 2020-04-10 15:37:10 +08:00
README.en-US.md fix: 1. L7Draw 对应 Github 和 文档地址变更 (#1215) 2022-07-01 14:34:21 +08:00
README.md fix: 1. L7Draw 对应 Github 和 文档地址变更 (#1215) 2022-07-01 14:34:21 +08:00
package.json chore: update version 2.9.36 -> 2.9.37 (#1397) 2022-10-14 16:39:55 +08:00
tsconfig.build.json feat: 渲染流程异步改造、部分支持 worker (#1224) 2022-08-02 19:05:27 +08:00

README.en-US.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

website

🌄 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.