Nuxt Leaflet
一个用于使用 Leaflet 的 Nuxt 3 模块。它是使用 Vue Leaflet 制作的,它是一个用于 Leaflet 的 Vue 3 包装器,它将原始 Leaflet API 暴露为 Vue 组件。
这个模块实际上只是为了让它与 Nuxt 3 一起工作,而无需任何配置。
功能
- ⚡ 无需配置
- 🦺 Typescript 支持
- 🚠 自动导入
快速设置
- 将
nuxt3-leaflet
依赖项添加到您的项目中
# Using pnpm
pnpm add -D nuxt3-leaflet
# Using yarn
yarn add --dev nuxt3-leaflet
# Using npm
npm install --save-dev nuxt3-leaflet
- 在
nuxt.config.ts
文件的modules
部分添加nuxt3-leaflet
。
export default defineNuxtConfig({
modules: [
'nuxt3-leaflet'
]
})
就是这样!您现在可以在 Nuxt 应用中使用 Leaflet ✨
用法
有关可用组件的完整列表,请查看原始的 Vue Leaflet 库。
请注意,组件以 PascalCase 导出,因此例如,请编写 <LMap>
而不是 <l-map>
。
基本
<template>
<div style="height:100vh; width:100vw">
<LMap
ref="map"
:zoom="zoom"
:center="[47.21322, -1.559482]"
>
<LTileLayer
url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
attribution="&copy; <a href="https://www.openstreetmap.org/">OpenStreetMap</a> contributors"
layer-type="base"
name="OpenStreetMap"
/>
</LMap>
</div>
</template>
<script setup>
import { ref } from 'vue'
const zoom = ref(6)
</script>
<style>
body {
margin: 0;
}
</style>
开发
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with the playground
npm run dev
# Build the playground
npm run dev:build
# Run ESLint
npm run lint
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release