Nuxt Leaflet
一个使用 Leaflet 的 Nuxt 模块。它是使用 Vue Leaflet 构建的,Vue Leaflet 是 Leaflet 的 Vue 3 封装,它将原始的 Leaflet API 作为 Vue 组件公开。
此模块实际上只是为了使其与 Nuxt 一起工作,而无需进行任何配置。
特性
- ⚡ 无需配置
- 🦺 Typescript 支持
- 🚠 自动导入
快速设置
npx nuxi@latest module add @nuxtjs/leaflet
就是这样!您现在可以在您的 Nuxt 应用程序中使用 Leaflet 了 ✨
用法
有关可用组件的完整列表,请查看官方文档库。
基础
<template>
<div style="height:100vh; width:100vw">
<LMap
ref="map"
:zoom="zoom"
:center="[47.21322, -1.559482]"
:use-global-leaflet="false"
>
<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>
开发
# 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