1.1.16 • Published 4 years ago

vue2-leaflet-chinatilelayer v1.1.16

Weekly downloads
3
License
'MIT'
Repository
github
Last release
4 years ago

vue2-leaflet-chinatilelayer

A Provider for China Tms Service plugin for the vue2-leaflet package.

This is a chinatmsproviders plugin extension for vue2-leaflet package

Example

Dependencies

Installation

npm install vue2-leaflet-chinatilelayer

or

yarn add vue2-leaflet-chinatilelayer

Usage

Example:

<template>
  <l-map style="height: 100vh;" :zoom="zoom" :center="center">
    <l-china-tilelayer :layerName="layerName" :options="options" />
  </l-map>
</template>

<script>
import 'leaflet/dist/leaflet.css'
import { LMap } from 'vue2-leaflet'
import LChinaTilelayer from 'vue2-leaflet-chinatilelayer'

export default {
  components: { LMap, LChinaTilelayer },
  data() {
    return {
      zoom: 13,
      layerName: 'GaoDe.Normal.Map',
      options: {
        maxZoom: 18,
        minZoom: 9,
      },
      center: [32.06031863553111, 118.76315116882326],
    }
  },
}
</script>

key

If you're using TianDiTu, please apply the key and config it in the option, like this:

<script>
import 'leaflet/dist/leaflet.css'
import { LMap } from 'vue2-leaflet'
import LChinaTilelayer from 'vue2-leaflet-chinatilelayer'

export default {
  components: { LMap, LChinaTilelayer },
  data() {
    return {
      zoom: 13,
      layerName: 'TianDiTu.Normal.Map',
      options: {
        maxZoom: 18,
        minZoom: 9,
        key: '***************'
      },
      center: [32.06031863553111, 118.76315116882326],
    }
  },
}
</script>

I added a key to the source code, but this key should only be used for testing.

Props

NameTypeRequiredDescription
layerNameObjectYesA Leaflet China TileLayer. See leaflet.chinatmsproviders
optionsObjectNoOptions to pass to the plugin. See leaflet.chinatmsproviders

Author

Herry Lee

1.1.16

4 years ago

1.1.15

4 years ago

1.1.14

4 years ago

1.1.13

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.1.12

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago