Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/antvis/l7

๐ŸŒŽ Large-scale WebGL-powered Geospatial Data Visualization analysis engine.
https://github.com/antvis/l7

3d amap antv data-visualization geojson geospatial gis javascript map mapbox maps point polygon webgl

Last synced: about 1 month ago
JSON representation

๐ŸŒŽ Large-scale WebGL-powered Geospatial Data Visualization analysis engine.

Awesome Lists containing this project

README

        

English | [็ฎ€ไฝ“ไธญๆ–‡](./README.md)

L7

๐ŸŒ Large-scale WebGL-powered Geospatial data visualization analysis framework.

[![CI](https://github.com/antvis/L7/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/antvis/L7/actions/workflows/ci.yml) [![NPM](https://flat.badgen.net/npm/v/@antv/l7?icon=npm)](https://www.npmjs.com/package/@antv/l7) ![last commit](https://badgen.net/github/last-commit/antvis/L7)


Tutorials โ€ข
API documentation โ€ข
Examples โ€ข
Contributor

![L7 demo](https://gw.alipayobjects.com/mdn/rms_855bab/afts/img/A*S-73QpO8d0YAAAAAAAAAAABkARQnAQ)

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

## ๐ŸŒŸ 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

```bash
npm install @antv/l7
```

### Init Map by L7 scene

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

```javascript
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);
```

## ๐Ÿ”— Ecosystem

- [L7Draw](https://github.com/antvis/L7Draw)
- [L7Plot](https://github.com/antvis/L7Plot)
- [LarkMap](https://github.com/antvis/LarkMap)
- [L7VP](https://locationinsight.antv.antgroup.com)
- [L7Editor](https://l7editor.antv.antgroup.com)

## ๐Ÿค Contributing

To become a contributor, please follow our [contributing guide](./CONTRIBUTING.en-US.md). If you are an active contributor, you can apply to be a outside collaborator.

![https://github.com/antvis/l7/graphs/contributors](https://contrib.rocks/image?repo=antvis/l7)

## ๐Ÿ“„ License

The scripts and documentation in this project are released under the [MIT license](./LICENSE).