Skip to content
/ L7 Public
forked from antvis/L7

๐ŸŒŽ Large-scale WebGL-powered Geospatial Data Visualization analysis framework which relies on Mapbox GL or AMap to render basemaps.

License

Notifications You must be signed in to change notification settings

297cwrun/L7

ย 
ย 

Repository files navigation

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

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.

About

๐ŸŒŽ Large-scale WebGL-powered Geospatial Data Visualization analysis framework which relies on Mapbox GL or AMap to render basemaps.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 63.2%
  • CSS 32.1%
  • HTML 2.5%
  • GLSL 1.5%
  • JavaScript 0.5%
  • Less 0.2%