1.0.7 • Published 2 months ago

qm-map-wrapper v1.0.7

Weekly downloads
-
License
ISC
Repository
-
Last release
2 months ago

qm-map-wrapper

qm-map-wrapper 是一款基于 Mapboxgl 的地图扩展类

安装

使用 npm 或 yarn 安装

npm install qm-map-wrapper
yarn add qm-map-wrapper

依赖

qm-map-print 开发依赖于fabric@5.3.0,file-saver,jspdf 库

使用

import { MapWrapper } from 'qm-map-wrapper';


const mapDom = ref<HTMLDivElement | null>(null)

const mapOption={
    id: 'themeMap',
    container: '',
    center: [115.39047951086354, 33.2714096725866] as LngLatLike, // 界首市
    zoom: 9.5,
    maxZoom: 20
}
// 初始化 
  const map = new MapWrapper({
    pitch: 0,
    bearing: 0,
    attributionControl: false,
    renderWorldCopies: false,
    trackResize: true,
    preserveDrawingBuffer: true,
    style: {
      version: 8,
      glyphs: `/font/{fontstack}/{range}.pbf`,
      sources: {},
      layers: []
    }
    ...mapOption,
      container: mapDom.current as HTMLElement,
  })

// 挂载
 <div ref={mapDom} className={className ?? 'map-wrapper'} id="map-wrapper"></div>
1.0.7

2 months ago

1.0.6

2 months ago

1.0.5

5 months ago

1.0.3

7 months ago

1.0.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago

0.1.0

7 months ago

0.0.2

7 months ago

0.0.1

7 months ago