npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ttfn/mapbox-gl-draw

v1.4.2-beta.92

Published

A drawing component for Mapbox GL JS

Downloads

57

Readme

@ttfn/mapbox-gl-draw

mapbox-gl-draw的基础上扩展了更多功能。

必须安装 mapbox-gl-js.

安装

pnpm add @ttfn/mapbox-gl-draw

使用

JavaScript

es module 的方式使用

import mapboxgl from 'mapbox-gl';
import MapboxDraw from '@ttfn/mapbox-gl-draw';

umd 的方式使用

<script src="/lib/ttfn/mapbox-gl-draw/dist/mapbox-gl-draw.umd.min.js"></script>

CSS

es module 的方式使用

import '@ttfn/mapbox-gl-draw/dist/mapbox-gl-draw.css';

umd 的方式使用

<script src="/lib/ttfn/mapbox-gl-draw/dist/mapbox-gl-draw.css"></script>

功能

undo() => this

  • 描述:撤销

redodo: () => this

  • 描述:重做

finish: () => this

  • 描述:完成绘制

cancel: () => this

  • 描述:取消绘制

drawByCenter: () => this

  • 描述:通过中心点绘制

drawByCoordinate: (coord: number[]) => this

  • 描述:通过坐标绘制

setStyle: (styles: object[]) => this

  • 描述:设置样式

edit: (geojson: Feature | Geometry) => this

  • 描述:编辑图形

setMeasureOptions: (options: MapboxDraw.MapboxDrawOptions['measureOptions']) => this

  • 描述:设置测量选项

changeMode: (mode: 'cut_polygon', options?: { featureIds?: string[]; highlightColor?: string; continuous?: boolean; bufferWidth?: number; bufferWidthUnit?: MapboxDraw.AreaUnit; }) => this;

  • 描述:使用绘制的面图形分割选中的或传入的图形。
  • featuresIds: 待分割的图形 id 数组,如果不传则分割选中的图形。
  • highlightColor: 图形的描边色。
  • continuous: 是否连续分割。
  • bufferWidth: 缓冲距离。
  • bufferWidthUnit: 缓冲距离单位。

changeMode( mode: 'cut_line', options?: { featureIds?: string[]; highlightColor?: string; continuous?: boolean; lineWidth?: number; lineWidthUnit?: MapboxDraw.LineUnit; }) => this;

  • 描述:使用绘制的线图形分割选中的或传入的图形。
  • featuresIds: 待分割的图形 id 数组,如果不传则分割选中的图形。
  • highlightColor: 图形的描边色。
  • continuous: 是否连续分割。
  • bufferWidth: 分割线的宽度。
  • bufferWidthUnit: 分割线的宽度单位。

缓冲

  • 线缓冲(单侧、双侧、平头、圆头)
  • 面缓冲(向内、向外、平头、圆头)

挖洞

  • 待开发

修边

  • 待开发

测量角度

  • 待开发

绘制 90° 面

  • 待开发

手绘

  • 待开发

绘制矩形

  • 待开发

使用三个点绘制矩形

  • 待开发

按直径画圆

  • 待开发

从中心画圆

  • 待开发

通过边框绘制椭圆

  • 待开发

使用 3 个点绘制椭圆

  • 待开发

旋转

  • 待开发

缩放

  • 待开发

旋转缩放

  • 待开发

复制粘贴

  • 待开发

下载

  • 待开发

套索选择

  • 待开发

打开本地文件的图形

  • 待开发 参考网页版 vscode,实现在线编辑 geojson 文件并实时预览

合并

  • 待开发

拓扑

  • 待开发

交集

  • 待开发

配置

disabledClickOnVertex?: boolean

  • 描述:双击落点或者落点与其它节点重合时是否禁止完成绘制
  • 默认值:undefined

ignoreClickOnVertex?: boolean

  • 描述:是否忽略双击落点或者落点与其它节点重合的检测
  • 默认值:undefined

stopPropagationClickActiveFeatureHandlerClassName?: string

  • 描述:当点击源的元素有 selector 时,阻止触发高亮图斑点击事件
  • 默认值:undefined

clickNotthingNoChangeMode?: boolean

  • 描述:编辑模式下点击图形以外部分不退出编辑模式
  • 默认值:undefined

disabledDragVertexWithSimpleSelectMode?: boolean

  • 描述:simple_select mode 下禁止拖拽节点,点要素在 simple_select mode 下才允许编辑
  • 默认值:undefined

disabledDrag?: boolean

  • 描述:禁止拖拽
  • 默认值:undefined

disableSelect?: boolean

  • 描述:禁止选中
  • 默认值:undefined

measureOptions?: MapboxDrawOptions['measureOptions']

  • 描述:测量配置
  • 默认值:undefined
  • enable?: boolean
    • 描述:是否启用测量功能
    • 默认值:undefined
  • unit?: object
    • 描述:测量单位
    • 默认值:undefined,
      • line?: MapboxDraw.MeasureLineUnit
        • 描述:线测量单位,
        • 默认值:undefined
      • area: MapboxDraw.MeasureAreaUnit
        • 描述:面积测量单位
        • 默认值:undefined
  • precision?: number
    • 描述:测量精度
    • 默认值:undefined

事件

draw.redoUndo: DrawUndoEvent

  • 描述:撤销回退的事件通知
  • 示例
map.on('draw.redoUndo', (e) => {
  console.log(e);
});

draw.clickOnVertex: DrawClickOnVertexEvnet

  • 描述:点击节点的事件通知

draw.onMidpoint: DrawOnMidpointEvent

  • 描述:点击中间节点的事件通知

draw.dragVertex: DrawDragVertexEvent

  • 描述:拖拽节点的事件通知

draw.clickOrTab: DrawClickOrTabEvent

  • 描述:点击地图的事件通知,分为一下几类行为
    • clickNoTarget:点击当前选中的图形
    • clickInactiveFeature:点击非高亮图形
    • clickActiveFeature:点击高亮图形
    • null:没有命中

draw.drag: DrawDragEvent

  • 描述:拖拽图形的事件通知

draw.clearSelectedCoordinates: DrawClearSelectedCoordinatesEvent

  • 描述:清除选中坐标点的事件通知

draw.addPoint: DrawAddPointEvent

  • 描述:落点的事件通知

draw.onAdd: DrawOnAddEvent

  • 描述:绘制工具挂载到地图中的事件通知