0.1.6 • Published 9 months ago
qm-rmap v0.1.6
qm-rmap
qm-rmap 是一款基于 React、Mapboxgl 的地图组件
安装
使用 npm 或 yarn 安装
npm install qm-rmap
yarn add qm-rmap
依赖
qm-rmap 开发依赖于mapbox-gl,turf.js 库
初始化使用
import { MapWidget } from 'qm-rmap';
import type { LngLatLike } from 'mapbox-gl';
const mapOptions = {
id: 'map',
center: [115.434038, 33.347523] as LngLatLike,
container: '',
zoom: 11,
maxZoom: 18,
pitch: 45,
};
const basemap: TLayerGroupOptions = {
id: 'base_map',
name: '基础底图',
type: 'logicGroup',
layers: [
{
id: 'tdt_img',
name: '天地图-影像',
type: 'raster',
isAdd: true,
source: {
type: 'raster',
tileSize: 256,
tiles: [
`http://t0.tianditu.gov.cn/img_w/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=img&STYLE=default&TILEMATRIXSET=w&FORMAT=tiles&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}&tk=${tianditukey}`,
],
},
}]}
const mapSetting:TMapLayerSettting=[basemap]
const mapLoadHandle: any = (map: MapWrapper) => {}// mapbox中load事件的回调
<MapWidget mapOptions={mapOptions} mapLayerSettting={mapSetting} onMapLoad={mapLoadHandle}>
{children}
</MapWidget>
工具条使用-作为MapWidget-children
<Legend position={{ bottom: 10, left: 10 }} />
<Measure position={{ top: 190, right: 10 }} />
<LayerList position={{ top: 10, left: 10 }} />
<SwipeControl position={{top: 150,right: 10}}/>
0.1.2
10 months ago
0.1.4
10 months ago
0.1.3
10 months ago
0.1.6
9 months ago
0.1.5
10 months ago
0.1.1
10 months ago
0.1.0
10 months ago
0.0.15
10 months ago
0.0.14
10 months ago
0.0.13
10 months ago
0.0.12
10 months ago
0.0.11
10 months ago
0.0.10
10 months ago
0.0.9
10 months ago
0.0.8
10 months ago
0.0.7
10 months ago
0.0.6
10 months ago
0.0.5
10 months ago
0.0.4
10 months ago
0.0.3
10 months ago
0.0.2
10 months ago
0.0.1
10 months ago