mirror of https://gitee.com/antv-l7/antv-l7
1.2 KiB
1.2 KiB
title | order |
---|---|
文档链接 | 0 |
旧版地图行政区划组件 - L7Boundary
新版地图行政区划组件 - L7Plot Choropleth
🌟 旧版本行政区划组件库不再继续维护,推荐使用 L7Plot 的 Choropleth 行政区划图表。
使用方式
- 按图表方式,在线示例
import { Choropleth } from '@antv/l7plot';
const choropleth = new Choropleth('container', options);
- 按场景方式,在线示例
import { Scene, Mapbox } from '@antv/l7';
import { Choropleth } from '@antv/l7plot';
const scene = new Scene({
id: 'container',
map: new Mapbox({
style: 'light',
center: [102.447303, 37.753574],
zoom: 5,
}),
});
const choropleth = new Choropleth(options);
scene.on('loaded', () => {
choropleth.addToScene(scene);
});
API
Choropleth 具体 API 文档移步 L7Plot 官网。