antv-l7/docs/tutorial/quickstart.zh.md

1.8 KiB
Raw Blame History

title order redirect_from
快速上手 0
/zh/docs/tutorial

markdown:docs/common/style.md

L7

Current version: L7 2.0版本号

使用方法

通过 L7 CDN 使用

Include the L7 JS JavaScript <head> of your HTML file.

⚠️ 如果需要引用第三方地图API请确保在先引入第三方API然后引入L7

<head>
<! --引入最新版的L7--> 
<script src = 'https://unpkg.com/@antv/l7'></script>

<! --指定版本号引入L7--> 
<script src = 'https://unpkg.com/@antv/l7@2.0.11'></script>

</head>

通过 Module bundle 使用

Install the npm package.


// L7 依赖
npm install --save @antv/l7

// 第三方底图依赖
npm install --save @antv/l7-maps;

初始化地图

使用 高德 底图


import { Scene, PointLayer } from '@antv/l7';
import { GaodeMap } from '@antv/l7-maps';

const scene = new Scene({
  id: 'map',
  map: new GaodeMap({
    pitch: 35.210526315789465,
    mapStyle: 'dark',
    center: [ 104.288144, 31.239692 ],
    zoom: 4.4
  })
});

使用Mapbox 底图


import { Scene, HeatmapLayer } from '@antv/l7';
import { Mapbox } from '@antv/l7-maps';

const scene = new Scene({
  id: 'map',
  map: new Mapbox({
    style: 'dark',
    pitch: 0,
    center: [ 127.5671666579043, 7.445038892195569 ],
    zoom: 2.632456779444394
  })
});

不同项目使用模板

不同项目模板在CodeSandbox你可以预览也可以下载到本地

React

地址

Vue

地址

Angular

地址

HTML CDN

地址