
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.
@timeroute/vmap
Advanced tools
VMap is a comprehensive MapboxGL component library. You can easily and happily apply VMap to your Vue projects. Import various data sources and layers in the form of components, and modify the state of the layer by modifying the parameters of props.
VMap is a comprehensive MapboxGL component library. You can easily and happily apply VMap to your Vue projects. Import various data sources and layers in the form of components, and modify the state of the layer by modifying the parameters of props.
The purpose of VMap is to allow users to develop GIS in Vue more concisely and efficiently.
VMap essentially wraps some classes in MapboxGL and implements componentization through some variable properties of the watch class.
For example, the v-fill-layer component actually wraps the FillLayer class.
pnpm add mapvue
import { createApp } from "vue";
import VMap from "mapbox-vue";
import "mapbox-vue/dist/mapbox-vue.css";
import App from "./App.vue";
createApp(App).use(VMap).mount("#app");
<script setup>
import { reactive } from "vue";
import token from "some-where";
</script>
<template>
<v-map :accessToken="token" :options="state.mapOptions">
<v-geo-source
id="ports"
data="https://d2ad6b4ur7yvpq.cloudfront.net/naturalearth-3.3.0/ne_10m_ports.geojson"
:cluster="true"
/>
<v-circle-layer id="ports" source="ports" />
</v-map>
</template>
FAQs
VMap is a comprehensive MapboxGL component library. You can easily and happily apply VMap to your Vue projects. Import various data sources and layers in the form of components, and modify the state of the layer by modifying the parameters of props.
We found that @timeroute/vmap demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.