
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
mapsetting
Advanced tools
通用化地图组件,用于设备点位信息和矿井地图信息的展示,集成了编辑和展示功能
WMapCOM2302
<template>
<div class="container">
<krsMapsetting ref="mapContainer"/>
</div>
</template>
<script setup>
import { ref, onMounted } from 'vue'
import { krsMapsetting } from 'krsmapsetting'
import 'krsmapsetting/dist/entry.css'
const mapContainer = ref(null)
onMounted(() => {
mapContainer.value.initMap([0, 0])
})
</script>
├── App.vue // 示例demo
├── assets
│ ├── image
│ │ └── screen_bg.jpg // 背景图
│ └── svg // 地图图标
│ ├── HomeFilled.svg
│ ├── add.svg
│ ├── area.svg
│ ├── cancel.svg
│ ├── distance.svg
│ ├── edit.svg
│ ├── fullScreen.svg
│ ├── move.svg
│ ├── remove.svg
│ ├── reset.svg
│ ├── save.svg
│ ├── selectArea.svg
│ ├── vertexEdit.svg
│ ├── zoomIn.svg
│ └── zoomOut.svg
├── components // svg组件化
│ └── SvgIcon.vue
├── entry.js // 项目导出
├── main.js // 测试demo入口
├── mapSetting
│ ├── __test__
│ │ └── KrsMapsetting.spec.js // 测试文件
│ ├── drawStyle.js // mapdraw画布
│ ├── index.js // 导出
│ ├── infoBar.vue // 底部信息拦
│ ├── layerOptions.js // 构建图层
│ ├── legend.vue // 图例信息
│ ├── preview.vue // 地图组件
│ ├── tool.js // 通用工具
│ └── useMap.js // 地图功能
└── style.css // demo 样式
FAQs
map setting
The npm package mapsetting receives a total of 17 weekly downloads. As such, mapsetting popularity was classified as not popular.
We found that mapsetting demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.