*Total -- 12,884.81kb -> 8,944.92kb (30.58%) /dev-docs/screenshots/packages.png -- 192.20kb -> 59.97kb (68.8%) /dev-docs/screenshots/halton.png -- 30.45kb -> 10.38kb (65.91%) /dev-docs/screenshots/MSAA.png -- 152.05kb -> 61.65kb (59.45%) /dev-docs/screenshots/jest.png -- 77.24kb -> 43.92kb (43.13%) /packages/component/src/images/layers.png -- 1.88kb -> 1.12kb (40.05%) /dev-docs/screenshots/sepia.png -- 847.17kb -> 508.78kb (39.94%) /dev-docs/screenshots/hexagonalPixelate.png -- 895.05kb -> 547.21kb (38.86%) /dev-docs/screenshots/halftone.png -- 1,543.29kb -> 953.16kb (38.24%) /dev-docs/screenshots/dotscreen.png -- 2,073.34kb -> 1,310.22kb (36.81%) /dev-docs/screenshots/di-containers.png -- 257.50kb -> 164.13kb (36.26%) /dev-docs/screenshots/monorep.png -- 27.46kb -> 18.21kb (33.69%) /packages/component/src/images/logo.png -- 8.22kb -> 5.48kb (33.26%) /dev-docs/screenshots/blurpass.png -- 721.27kb -> 535.14kb (25.81%) /dev-docs/screenshots/multi-scene.png -- 974.41kb -> 727.94kb (25.29%) /dev-docs/screenshots/taa-1.png -- 167.38kb -> 125.92kb (24.77%) /dev-docs/screenshots/noise.png -- 2,381.13kb -> 1,805.74kb (24.16%) /dev-docs/screenshots/taa-step1.png -- 143.83kb -> 109.47kb (23.88%) /dev-docs/screenshots/taa-step3.png -- 206.41kb -> 158.91kb (23.01%) /dev-docs/screenshots/taa-step2.png -- 77.12kb -> 62.14kb (19.42%) /dev-docs/screenshots/custom-effect.png -- 1,312.92kb -> 1,058.90kb (19.35%) /stories/MapAdaptor/components/image/icon.svg -- 1.45kb -> 1.22kb (15.91%) /dev-docs/screenshots/mapbox-MSAA.png -- 789.67kb -> 672.25kb (14.87%) /stories/assets/images/layers.svg -- 1.68kb -> 1.54kb (8.76%) /packages/component/src/images/layers.svg -- 1.68kb -> 1.54kb (8.76%) Signed-off-by: ImgBotApp <ImgBotHelp@gmail.com> |
||
---|---|---|
.github | ||
.storybook | ||
.vscode | ||
build | ||
demos | ||
dev-docs | ||
docs | ||
examples | ||
jest | ||
packages | ||
site | ||
stories | ||
.editorconfig | ||
.eslintrc | ||
.gitignore | ||
.prettierrc | ||
.stylelintrc | ||
.travis.yml | ||
.yarnrc | ||
CHANGELOG.md | ||
LICENSE.md | ||
README.md | ||
README.zh-CN.md | ||
babel.config.js | ||
commitlint.config.js | ||
gatsby-browser.js | ||
gatsby-config.js | ||
gatsby-node.js | ||
jest.config.js | ||
lerna.json | ||
package.json | ||
tsconfig.build.json | ||
tsconfig.json | ||
tslint.json | ||
tslint.prod.json | ||
tslint.test.json | ||
yarn.lock |
README.md
L7
Large-scale WebGL-powered Geospatial data visualization analysis framework.
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
🌟 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);