Nuxt Nation 大会即将到来。加入我们,时间为 11 月 12 日至 13 日。

leaflet
@nuxtjs/leaflet

Leaflet 与 Nuxt 集成

@nuxtjs/leaflet

Nuxt Leaflet

npm versionnpm downloadsLicenseNuxt

一个用于使用 Leaflet 的 Nuxt 模块。它使用 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="&amp;copy; <a href=&quot;https://www.openstreetmap.org/&quot;>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