@jhgrrewq/l7-layers
TypeScript icon, indicating that this package has built-in type declarations

2.3.11 • Public • Published

L7's Collection of Layers

Installation

yarn add @jhgrrewq/l7-layers

Getting Started

Use built-in layers directly:

import { PointLayer } from '@jhgrrewq/l7-layers';

const layer = new PointLayer({
  // ...initialization options
});

Create a custom layer with the help of BaseLayer:

import { BaseLayer } from '@jhgrrewq/l7-layers';

class MyCustomLayer extends BaseLayer {
  // ...override methods
}

const layer = new MyCustomLayer({
  // ...initialization options
});

Current Built-in Layers

  • PointLayer
  • PolygonLayer
  • LineLayer
  • HeatmapLayer
  • RasterLayer

Readme

Keywords

none

Package Sidebar

Install

npm i @jhgrrewq/l7-layers

Weekly Downloads

0

Version

2.3.11

License

ISC

Unpacked Size

1.62 MB

Total Files

279

Last publish

Collaborators

  • jhgrrewq