npm install leaflet vue2-leaflet --save
// 或者
yarn add leaflet vue2-leaflet
// 重点 重点 重点,千万别忘记引入样式,否则地图显示错位
import 'leaflet/dist/leaflet.css';
// 引入想要使用的组件
import { LMap, LTileLayer, LMarker } from 'vue2-leaflet';
export default {
name: 'MyAwesomeMap',
components: {
LMap,
LTileLayer,
LMarker,
},
};
注意: vue2-leaflet 是对leaflet的封装,在vue项目中可以直接使用vue2-leaflet,但是需要同时安装两个依赖
vue2-leaflet的官网地址
leaflet官网地址
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
options | Leaflet options to pass to the component constructor (传递参数给组件构造函数) |
object | - | {} |
center | The center of the map, supports .sync modifier (地图的中心点) |
object|array | - | () => [0, 0] |
bounds | The bounds of the map, supports .sync modifier (地图的边界) |
array|object | - | null |
maxBounds | The max bounds of the map (地图的最大边界) |
array|object | - | null |
zoom | The zoom of the map, supports .sync modifier (地图的缩放) |
number | - | 0 |
minZoom | The minZoom of the map (地图的最大缩放) |
number | - | null |
maxZoom | The maxZoom of the map (地图的最小缩放) |
number | - | null |
paddingBottomRight | The paddingBottomRight of the map (地图的右下角) |
array | - | null |
paddingTopLeft | The paddingTopLeft of the map (地图左上角) |
array | - | null |
padding | The padding of the map (地图内部填充) |
array | - | null |
worldCopyJump | The worldCopyJump option for the map (地图的世界复制跳转选项) |
boolean | - | false |
crs | The crs option for the map (地图的crs选项) |
object | CRS.EPSG3857 |
() => CRS.EPSG3857 |
maxBoundsViscosity | number | - | null | |
inertia | boolean | - | null | |
inertiaDeceleration | number | - | null | |
inertiaMaxSpeed | number | - | null | |
easeLinearity | number | - | null | |
zoomAnimation | boolean | - | null | |
zoomAnimationThreshold | number | - | null | |
fadeAnimation | boolean | - | null | |
markerZoomAnimation | boolean | - | null | |
noBlockingAnimations | boolean | - | false |
Events
Event name | Type | Description |
---|---|---|
leaflet:load | DEPRECATED event | |
ready | object | Triggers when the component is ready |
update:zoom | number,string | Triggers when zoom is updated |
update:center | object,array | Triggers when center is updated |
update:bounds | object | Triggers when bounds are updated |
API各种类中的核心部分,用来在页面中创建地图并操纵地图.
// initialize the map on the "map" div with a given center and zoom
var map = L.map('map', {
center: [51.505, -0.09],
zoom: 13
});
构造器 | 使用 | 描述 |
---|---|---|
L.Map( |
new L.Map(…) L.map(…) |
通过div元素和带有地图选项的描述的文字对象来实例化一个地图对象,其中文字对象是可选的。 |
Map State Options
选项 | 类型 | 默认值 | 描述 |
---|---|---|---|
center |
LatLng |
null |
初始化地图的地理中心. |
zoom |
Number |
null |
初始化地图的缩放. |
layers |
ILayer[] |
null |
初始化后加载到地图上的图层. |
minZoom |
Number |
null |
地图的最小视图。可以重写地图图层的minZoom. |
maxZoom |
Number |
null |
地图的最大视图。可以重写地图图层的maxZoom . |
maxBounds |
LatLngBounds |
null |
当这个选项被设置后,地图被限制在给定的地理边界内,当用户平移将地图拖动到视图以外的范围时会出现弹回的效果, 并且也不允许缩小视图到给定范围以外的区域(这取决于地图的尺寸)。 使用setMaxBounds方法可以动态地设置这种约束. |
crs |
CRS |
L.CRS. |
使用的坐标系,当你不确定坐标系是什么时请不要更改. |
Interaction Options
选项 | 类型 | 默认值 | 描述 |
---|---|---|---|
dragging |
Boolean |
true |
决定地图是否可被鼠标或触摸拖动. |
touchZoom |
Boolean |
true |
决定地图是否可被两只手指触摸拖拽缩放. |
scrollWheelZoom |
Boolean |
true |
决定地图是否被被鼠标滚轮滚动缩放. |
doubleClickZoom |
Boolean |
true |
决定地图是否可被双击缩放. |
boxZoom |
Boolean |
true |
决定地图是否可被缩放到鼠标拖拽出的矩形的视图,鼠标拖拽时需要同时按住shift键. |
tap |
Boolean |
true |
Enables mobile hacks for supporting instant taps (fixing 200ms click delay on iOS/Android) and touch holds (fired as contextmenu events). |
tapTolerance |
Number |
15 |
The max number of pixels a user can shift his finger during touch for it to be considered a valid tap. |
trackResize |
Boolean |
true |
确定地图在窗口尺寸改变时是否可以自动处理浏览器以更新视图. |
worldCopyJump |
Boolean |
false |
当这个选项可用时,当你平移地图到其另一个领域时会被地图捕获到,并无缝地跳转到原始的领域以保证所有标注、矢量图层之类的覆盖物仍然可见. |
closePopupOnClick |
Boolean |
true |
当你不想用户点击地图关闭消息弹出框时,请将其设置为false . |
Keyboard Navigation Options
选项 | 类型 | 默认值 | 描述 |
---|---|---|---|
keyboard |
Boolean |
true |
聚焦到地图且允许用户通过键盘的方向键和+ /- 键来漫游地图. |
keyboardPanOffset |
Number |
80 |
确定按键盘方向键时地图平移的像素. |
keyboardZoomOffset |
Number |
1 |
确定键盘+ or - 键对于的缩放级数. |
Panning Inertia Options
选项 | 类型 | 默认值 | 描述 |
---|---|---|---|
inertia |
Boolean |
true |
如果该选项可用,在拖动和在某一时间段内持续朝同一方向移动建有动力的地图时,会有惯性的效果. |
inertiaDeceleration |
Number |
3000 |
确定惯性移动减速的速率,单位是像素每秒的二次方2. |
inertiaMaxSpeed |
Number |
1500 |
惯性移动的最大速度,单位是像素每秒. |
inertiaThreshold |
Number |
depends |
放开鼠标或是触摸来停止惯性移动与移动停止之间的毫秒数. |
Control options
选项 | 类型 | 默认值 | 描述 |
---|---|---|---|
zoomControl |
Boolean |
true |
确定zoom control是否默认加载在地图上 . |
attributionControl |
Boolean |
true |
确定attribution control是否默认加载在地图上. |
Animation options
选项 | 类型 | 默认值 | 描述 |
---|---|---|---|
fadeAnimation |
Boolean |
depends | 确定瓦片淡出动画是否可用。通常默认在所有浏览器中都支持CSS3转场,android例外. |
zoomAnimation |
Boolean |
depends | 确定瓦片缩放动画是否可用。通常默认在所有浏览器中都支持CSS3转场,android例外. |
zoomAnimationThreshold |
Number |
4 | Won't animate zoom if the zoom difference exceeds this value. |
markerZoomAnimation |
Boolean |
depends | 确定注记的缩放是否随地图缩放动画而播放,如果被禁用,注记在动画中拉长时会消失。通常默认在所有浏览器中都支持CSS3转场,android例外. |
You can subscribe to the following events using these methods.
Event | Data | 描述 |
---|---|---|
click |
MouseEvent |
用户点击或触摸地图时触发. |
dblclick |
MouseEvent |
用户双击或连续两次触摸地图时触发. |
mousedown |
MouseEvent |
用户按下鼠标按键时触发. |
mouseup |
MouseEvent |
用户按下鼠标按键时触发. |
mouseover |
MouseEvent |
鼠标进入地图时触发. |
mouseout |
MouseEvent |
鼠标离开地图时触发. |
mousemove |
MouseEvent |
鼠标在地图上移动时触发. |
contextmenu |
MouseEvent |
当用户在地图上按下鼠标右键时触发,如果有监听器在监听这个时间,则浏览器默认的情景菜单被禁用. |
focus |
Event |
当用户在地图上进行标引、点击或移动时进行聚焦. |
blur |
Event |
当地图失去焦点时触发. |
preclick |
MouseEvent |
当鼠标在地图上点击之前触发。有时会在点击鼠标时,并在已存在的点击事件开始处理之前想要某件事情发生时用得到. |
load |
Event |
当地图初始化时触发。(当地图的中心点和缩放初次设置时). |
unload |
Event |
Fired when the map is destroyed with remove method. |
viewreset |
Event |
当地图需要重绘内容时触发。(通常在地图缩放和载入时发生)这对于创建用户自定义的叠置图层非常有用. |
movestart |
Event |
地图视图开始改变时触发。(比如用户开始拖动地图). |
move |
Event |
所有的地图视图移动时触发. |
moveend |
Event |
当地图视图结束改变时触发。(比如用户停止拖动地图). |
dragstart |
Event |
用户开始拖动地图时触发. |
drag |
Event |
用户拖动地图时不断重复地触发. |
dragend |
Event |
用户停止拖动时触发. |
zoomstart |
Event |
当地图缩放即将发生时触发。(比如缩放动作开始前). |
zoomend |
Event |
当地图缩放时触发. |
zoomlevelschange |
Event |
Fired when the number of zoomlevels on the map is changed due to adding or removing a layer. |
resize |
ResizeEvent |
Fired when the map is resized. |
autopanstart |
Event |
打开弹出窗口时地图开始自动平移时触发. |
layeradd |
LayerEvent |
当一个新的图层添加到地图上时触发. |
layerremove |
LayerEvent |
当一些图层从地图上移除时触发. |
baselayerchange |
LayerEvent |
当通过layer control改变基础图层时触发. |
overlayadd |
LayerEvent |
Fired when an overlay is selected through the layer control. |
overlayremove |
LayerEvent |
Fired when an overlay is deselected through the layer control. |
locationfound |
LocationEvent |
当地理寻址成功时触发(使用locate方法) |
locationerror |
ErrorEvent |
当地理寻址错误时触发(使用locate方法) |
popupopen |
PopupEvent |
当弹出框打开时触发(使用openPopup 方法) |
popupclose |
PopupEvent |
当弹出框关闭时触发(使用closePopup 方法) |
方法 | 返回值 | 描述 |
---|---|---|
setView( |
this |
设定地图(设定其地理中心和缩放). |
setZoom( |
this |
设定地图的缩放. |
zoomIn( |
this |
通过delta变量放大地图的级别,1是delta的默认值. |
zoomOut( |
this |
通过delta变量缩小地图的级别,1是delta的默认值. |
setZoomAround( |
this |
Zooms the map while keeping a specified point on the map stationary (e.g. used internally for scroll zoom and double-click zoom). |
fitBounds( |
this |
将地图视图尽可能大地设定在给定的地理边界内. |
fitWorld( |
this |
将地图视图尽可能大地设定在包含全部地域的级别上. |
panTo( |
this |
将地图平移到给定的中心。如果新的中心点在屏幕内与现有的中心点不同则产生平移动作. |
panInsideBounds( |
this |
平移地图到坐落于给定边界最接近的视图内. |
panBy( |
this |
通过给定的像素值对地图进行平移. |
invalidateSize( |
this |
检查地图容器的大小是否改变并更新地图,如果是这样的话,在动态改变地图大小后调用,如果animate是true的话,对地图进行更新. |
setMaxBounds( |
this |
将地图限定在给定的边界内 (map maxBounds). |
locate( |
this |
用地理定位接口Geolocation API获取用户位置信息,在成功定位或定位出错产生locationerror后解除location-found事件与定位数据,且将地图视图设定到检测的确切的用户的位置(如果定位失败则回到地域视图)。在Locate options中有更多详细内容。 |
stopLocate() |
this |
Stops watching location previously initiated by map.locate({watch: true}) and aborts resetting the map view if map.locate was called with {setView: true} . |
remove() |
this |
Destroys the map and clears all related event listeners. |
方法 | 返回值 | 描述 |
---|---|---|
getCenter() |
LatLng |
返回地图视图的地理中心. |
getZoom() |
Number |
获取地图视图现在所处的缩放级别. |
getMinZoom() |
Number |
返回地图最小的缩放级别. |
getMaxZoom() |
Number |
返回地图最大的缩放级别. |
getBounds() |
LatLngBounds |
返回地图视图的经纬度边界. |
getBoundsZoom( |
Number |
返回适应整个地图视图边界的最大缩放级别。如果inside的设置时true,这个方法返回适应整个地图视图边界的最小缩放级别. |
getSize() |
Point |
返回现有地图容器的大小. |
getPixelBounds() |
Bounds |
返回地图视图在像素投影坐标系下的边界。(很多时候对用户自定义图层和叠加很有用). |
getPixelOrigin() |
Point |
返回地图图层像素投影坐标系下的左上角的点。(很多时候对用户自定义图层和叠加很有用). |
方法 | 返回值 | 描述 |
---|---|---|
addLayer( |
this |
将图层添加到地图上。如果insertAtTheBottom的选项为true,图层添加时在所以图层之下。(在切换基底图时比较有用). |
removeLayer( |
this |
将图层在地图上移除. |
hasLayer( |
Boolean |
如果添加的图层是当前图层则返回true. |
openPopup( |
this |
当关闭前一个弹出框时弹出指定的对话框。(确定在同一时间只有一个打开并可用). |
openPopup( |
this |
Creates a popup with the specified options and opens it in the given point on a map. |
closePopup( |
this |
关闭openPopup打开的弹出框. |
addControl( |
this |
在地图上添加控制选项. |
removeControl( |
this |
在地图上移除控制选项. |
方法 | 返回值 | 描述 |
---|---|---|
latLngToLayerPoint( |
Point |
返回地图图层上与地理坐标相一致的点。(在地图上进行位置叠加时比较有用). |
layerPointToLatLng( |
LatLng |
返回给定地图上点的地理坐标系. |
containerPointToLayerPoint( |
Point |
将于地图容器相关的点转换为地图图层相关的点. |
layerPointToContainerPoint( |
Point |
将地图图层相关的点转换为地图容器相关的点. |
latLngToContainerPoint( |
Point |
返回与给定地理坐标系相符的地图容器的点. |
containerPointToLatLng( |
LatLng |
返回给定地理容器点的地理坐标. |
project( |
Point |
将地理坐标投影到指定缩放级别的像素坐标系中. |
unproject( |
LatLng |
将像素坐标系投影到指定缩放级别的地理坐标系中。(默认为当前的缩放级别). |
mouseEventToContainerPoint( |
Point |
返回鼠标点击事件对象的像素坐标(与地图左上角相关). |
mouseEventToLayerPoint( |
Point |
返回鼠标点击事件对象的像素坐标(与地图图层相关). |
mouseEventToLatLng( |
LatLng |
返回鼠标点击事件对象的地理坐标. |
方法 | 返回值 | 描述 |
---|---|---|
getContainer() |
HTMLElement |
返回地图容器对象. |
getPanes() |
MapPanes |
返回不同地图对象的边框(叠加渲染). |
whenReady( |
this |
当地图的位置和缩放初始化好或是时间发生之后,运行给定的回调方法,通常传递一个函数内容. |
选项 | 类型 | 默认值 | 描述 |
---|---|---|---|
watch |
Boolean |
false |
如果该值为真,则开始利用W3C的watchPosition方法监听位置变化情况(而不是指监听一次)。你可以通过map.stoplocate()方法来停止监听. |
setView |
Boolean |
false |
如果该值为真,则通过自动将地图视图定位到用户一定精度范围内的位置,如果地理定位失败则显示全部地图. |
maxZoom |
Number |
Infinity |
在使用setView选项时视图缩放的最大级别. |
timeout |
Number |
10000 |
在触发locationerror事件之前等待地理定位的毫秒为单位的时间. |
maximumAge |
Number |
0 |
位置监听的最大生命周期。如果比最后定位回复后毫秒用时短,则locate返回一个缓存位置. |
enableHighAccuracy |
Boolean |
false |
开启高精度,参加 W3C SPEC的描述. |
选项 | 类型 | 默认值 | 描述 |
---|---|---|---|
reset |
Boolean |
false |
If true , the map view will be completely reset (without any animations). |
pan |
pan options |
- |
Sets the options for the panning (without the zoom change) if it occurs. |
zoom |
zoom options |
- |
Sets the options for the zoom change if it occurs. |
animate |
Boolean |
- |
An equivalent of passing animate to both zoom and pan options (see below). |
选项 | 类型 | 默认值 | 描述 |
---|---|---|---|
animate |
Boolean |
- |
If true , panning will always be animated if possible. If false , it will not animate panning, either resetting the map view if panning more than a screen away, or just setting a new offset for the map pane (except for `panBy` which always does the latter). |
duration |
Number |
0.25 |
Duration of animated panning. |
easeLinearity |
Number |
0.25 |
The curvature factor of panning animation easing (third parameter of the Cubic Bezier curve). 1.0 means linear animation, the less the more bowed the curve. |
noMoveStart |
Boolean |
false |
If true , panning won't fire movestart event on start (used internally for panning inertia). |
选项 | 类型 | 默认值 | 描述 |
---|---|---|---|
animate |
Boolean |
- |
If not specified, zoom animation will happen if the zoom origin is inside the current view. If true , the map will attempt animating zoom disregarding where zoom origin is. Setting false will make it always reset the view completely without animation. |
The same as zoom/pan options and additionally:
选项 | 类型 | 默认值 | 描述 |
---|---|---|---|
paddingTopLeft |
Point |
[0,0] |
Sets the amount of padding in the top left corner of a map container that shouldn't be accounted for when setting the view to fit bounds. Useful if you have some control overlays on the map like a sidebar and you don't want them to obscure objects you're zooming to. |
paddingBottomRight |
Point |
[0,0] |
The same for bottom right corner of the map. |
padding |
Point |
[0,0] |
Equivalent of setting both top left and bottom right padding to the same value. |
M地图属性包括互动操作,允许你在运行环境中互动地控制地图行为,比如通过拖拽和点击缩放级别显示和不显示某要素. Example:
map.doubleClickZoom.disable();
You can also access default map controls like attribution control through map properties:
map.attributionControl.addAttribution("Earthquake data © GeoNames");
Property | 类型 | 描述 |
---|---|---|
dragging |
IHandler |
地图拖拽处理程序,可以通过鼠标和触摸的形式. |
touchZoom |
IHandler |
触摸地图缩放处理程序. |
doubleClickZoom |
IHandler |
双击缩放处理程序. |
scrollWheelZoom |
IHandler |
滚动缩放处理程序. |
boxZoom |
IHandler |
矩形框(利用鼠标拖动)缩放处理程序. |
keyboard |
IHandler |
键盘导向处理程序. |
tap |
IHandler |
Mobile touch hacks (quick tap and touch hold) handler. |
zoomControl |
Control.Zoom |
缩放控制. |
attributionControl |
Control.Attribution |
属性控制. |
望文思义,这是一个包括可以用来放置自定义图层的不同的地图窗口的对象。最大的区别是图层的叠置.
Property | 类型 | 描述 |
---|---|---|
mapPane |
HTMLElement |
包含其他地图窗口的窗口. |
tilePane |
HTMLElement |
切片图层的窗口. |
objectsPane |
HTMLElement |
包含除切片窗口以外所有窗口的窗口. |
shadowPane |
HTMLElement |
用来隐藏图层的窗口(如标注的隐藏). |
overlayPane |
HTMLElement |
这线段和多边形一类图层的窗口. |
markerPane |
HTMLElement |
标注图标的窗口. |
popupPane |
HTMLElement |
弹出的窗口. |
#Shapes
l-circle(通过给定的地理点和以米为单位的半径和选项对象来实例化一个圆对象。)
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
pane | string | - | 'overlayPane' | |
attribution | string | - | null | |
name | string | - | undefined | |
layerType | string | - | undefined | |
visible | boolean | - | true | |
interactive | boolean | - | true | |
bubblingMouseEvents | boolean | - | true | |
lStyle | object | - | null | |
stroke | boolean | - | true | |
color | string | - | '#3388ff' | |
weight | number | - | 3 | |
opacity | number | - | 1.0 | |
lineCap | string | - | 'round' | |
lineJoin | string | - | 'round' | |
dashArray | string | - | null | |
dashOffset | string | - | null | |
fill | boolean | - | true | |
fillColor | string | - | '#3388ff' | |
fillOpacity | number | - | 0.2 | |
fillRule | string | - | 'evenodd' | |
className | string | - | null | |
radius | number | - | null | |
options | Leaflet options to pass to the component constructor | object | - | {} |
latLng | object|array | - | () => [0, 0] |
Events
Event name | Type | Description |
---|---|---|
update:visible | boolean | Triggers when the visible prop needs to be updated |
ready | object | Triggers when the component is ready |
l-polygon(过给定地理点组成的数组和选项对象来实例化一个多边形)
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
pane | string | - | 'overlayPane' | |
attribution | string | - | null | |
name | string | - | undefined | |
layerType | string | - | undefined | |
visible | boolean | - | true | |
interactive | boolean | - | true | |
bubblingMouseEvents | boolean | - | true | |
lStyle | object | - | null | |
stroke | boolean | - | true | |
color | string | - | '#3388ff' | |
weight | number | - | 3 | |
opacity | number | - | 1.0 | |
lineCap | string | - | 'round' | |
lineJoin | string | - | 'round' | |
dashArray | string | - | null | |
dashOffset | string | - | null | |
fill | boolean | - | true | |
fillColor | string | - | '#3388ff' | |
fillOpacity | number | - | 0.2 | |
fillRule | string | - | 'evenodd' | |
className | string | - | null | |
smoothFactor | number | - | 1.0 | |
noClip | boolean | - | false | |
options | Leaflet options to pass to the component constructor | object | - | {} |
latLngs | array | - | [] |
Events
Event name | Type | Description |
---|---|---|
update:visible | boolean | Triggers when the visible prop needs to be updated |
ready | object | Triggers when the component is ready |
l-polyline(通过给定的地理点组成的数组和任意的选项对象实例化一个线段)
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
pane | string | - | 'overlayPane' | |
attribution | string | - | null | |
name | string | - | undefined | |
layerType | string | - | undefined | |
visible | boolean | - | true | |
interactive | boolean | - | true | |
bubblingMouseEvents | boolean | - | true | |
lStyle | object | - | null | |
stroke | boolean | - | true | |
color | string | - | '#3388ff' | |
weight | number | - | 3 | |
opacity | number | - | 1.0 | |
lineCap | string | - | 'round' | |
lineJoin | string | - | 'round' | |
dashArray | string | - | null | |
dashOffset | string | - | null | |
fill | boolean | - | false | |
fillColor | string | - | '#3388ff' | |
fillOpacity | number | - | 0.2 | |
fillRule | string | - | 'evenodd' | |
className | string | - | null | |
smoothFactor | number | - | 1.0 | |
noClip | boolean | - | false | |
options | Leaflet options to pass to the component constructor | object | - | {} |
latLngs | array | - | [] |
Events
Event name | Type | Description |
---|---|---|
update:visible | boolean | Triggers when the visible prop needs to be updated |
ready | object | Triggers when the component is ready |
l-rectangle(通过给定的地理边界和选项对象来实例化一个矩形对象
Props
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
pane | string | - | 'overlayPane' | |
attribution | string | - | null | |
name | string | - | undefined | |
layerType | string | - | undefined | |
visible | boolean | - | true | |
interactive | boolean | - | true | |
bubblingMouseEvents | boolean | - | true | |
lStyle | object | - | null | |
stroke | boolean | - | true | |
color | string | - | '#3388ff' | |
weight | number | - | 3 | |
opacity | number | - | 1.0 | |
lineCap | string | - | 'round' | |
lineJoin | string | - | 'round' | |
dashArray | string | - | null | |
dashOffset | string | - | null | |
fill | boolean | - | true | |
fillColor | string | - | '#3388ff' | |
fillOpacity | number | - | 0.2 | |
fillRule | string | - | 'evenodd' | |
className | string | - | null | |
smoothFactor | number | - | 1.0 | |
noClip | boolean | - | false | |
options | Leaflet options to pass to the component constructor | object | - | {} |
bounds | func | - | () => [[0,0],[0,0]] |
Events
Event name | Type | Description |
---|---|---|
update:visible | boolean | Triggers when the visible prop needs to be updated |
ready | object | Triggers when the component is ready |
#Tiles
l-grid-layer(创建一个地图层,其中每个图块都是实例化的Vue组件。每个图块组件都会获得相应的coords
道具,l-grid-layer
以指示图块的缩放级别和位置)
Props
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
pane | string | - | 'tilePane' | |
attribution | string | - | null | |
name | string | - | undefined | |
layerType | string | - | undefined | |
visible | boolean | - | true | |
opacity | number | - | 1.0 | |
zIndex | number | - | 1 | |
tileSize | number | - | 256 | |
noWrap | boolean | - | false | |
options | Leaflet options to pass to the component constructor | object | - | {} |
tileComponent | object | - |
Events
Event name | Type | Description |
---|---|---|
update:visible | boolean | Triggers when the visible prop needs to be updated |
ready | object | Triggers when the component is ready |
l-tile-layer(通过给定URL模板和具有选项的对象来实例化一个切片图层)
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
pane | string | - | 'tilePane' | |
attribution | string | - | null | |
name | string | - | undefined | |
layerType | string | - | undefined | |
visible | boolean | - | true | |
opacity | number | - | 1.0 | |
zIndex | number | - | 1 | |
tileSize | number | - | 256 | |
noWrap | boolean | - | false | |
tms | boolean | - | false | |
subdomains | string|array | - | 'abc' | |
detectRetina | boolean | - | false | |
options | Leaflet options to pass to the component constructor | object | - | {} |
url | string | - | null | |
tileLayerClass | func | - | tileLayer |
Events
Event name | Type | Description |
---|---|---|
update:visible | boolean | Triggers when the visible prop needs to be updated |
ready | object | Triggers when the component is ready |
l-wms-tile-layer(通过给定一个基本的WMS服务的URL和WMS参数或选项对象来实例化一个WMS切片图层对象。)
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
pane | string | - | 'tilePane' | |
attribution | string | - | null | |
name | string | - | undefined | |
layerType | string | - | undefined | |
visible | boolean | - | true | |
opacity | number | - | 1.0 | |
zIndex | number | - | 1 | |
tileSize | number | - | 256 | |
noWrap | boolean | - | false | |
tms | boolean | - | false | |
subdomains | string|array | - | 'abc' | |
detectRetina | boolean | - | false | |
layers | string | - | '' | |
styles | string | - | '' | |
format | string | - | 'image/jpeg' | |
transparent | boolean | - | ||
version | string | - | '1.1.1' | |
crs | object | - | null | |
upperCase | boolean | - | false | |
options | Leaflet options to pass to the component constructor | object | - | {} |
baseUrl | string | - | null |
Events
Event name | Type | Description |
---|---|---|
update:visible | boolean | Triggers when the visible prop needs to be updated |
ready | object | Triggers when the component is ready |
#Markers
l-circle-marker(是一个特定半径的圆,半径单位是像素。是Circle的延伸。通过Map#addLayer添加到地图上)
Props
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
pane | string | - | 'markerPane' | |
attribution | string | - | null | |
name | string | - | undefined | |
layerType | string | - | undefined | |
visible | boolean | - | true | |
interactive | boolean | - | true | |
bubblingMouseEvents | boolean | - | true | |
lStyle | object | - | null | |
stroke | boolean | - | true | |
color | string | - | '#3388ff' | |
weight | number | - | 3 | |
opacity | number | - | 1.0 | |
lineCap | string | - | 'round' | |
lineJoin | string | - | 'round' | |
dashArray | string | - | null | |
dashOffset | string | - | null | |
fill | boolean | - | true | |
fillColor | string | - | '#3388ff' | |
fillOpacity | number | - | 0.2 | |
fillRule | string | - | 'evenodd' | |
className | string | - | null | |
radius | number | - | null | |
options | Leaflet options to pass to the component constructor | object | - | {} |
latLng | object|array | - | () => [0, 0] |
Events
Event name | Type | Description |
---|---|---|
update:visible | boolean | Triggers when the visible prop needs to be updated |
ready | object | Triggers when the component is ready |
l-icon(简单易用的配置标记图标的方式)
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
iconUrl | string | - | null | |
iconRetinaUrl | string | - | null | |
iconSize | object|array | - | null | |
iconAnchor | object|array | - | null | |
popupAnchor | object|array | - | () => [0, 0] | |
tooltipAnchor | object|array | - | () => [0, 0] | |
shadowUrl | string | - | null | |
shadowRetinaUrl | string | - | null | |
shadowSize | object|array | - | null | |
shadowAnchor | object|array | - | null | |
bgPos | object|array | - | () => [0, 0] | |
className | string | - | '' | |
options | object | - | {} |
l-marker(通过给定一个地理点和一个具有选项的对象来实例化一个注记)
#Controls
l-control(添加任何自定义组件作为表单控件)
Props
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
position | string | - | 'topright' | |
options | Leaflet options to pass to the component constructor | object | - | {} |
disableClickPropagation | boolean | - | true | |
disableScrollPropagation | boolean | - | false |
Events
Event name | Type | Description |
---|---|---|
ready | object | Triggers when the component is ready |
l-control-attribution(将任何自定义组件添加为表单控件属性)
Props
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
position | string | - | 'topright' | |
options | Leaflet options to pass to the component constructor | object | - | {} |
prefix | string|boolean | - | null |
Events
Event name | Type | Description |
---|---|---|
ready | object | Triggers when the component is ready |
l-control-layers(将任何自定义组件添加为表单控制层)
Props
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
position | string | - | 'topright' | |
options | Leaflet options to pass to the component constructor | object | - | {} |
collapsed | boolean | - | true | |
autoZIndex | boolean | - | true | |
hideSingleBase | boolean | - | false | |
sortLayers | boolean | - | false | |
sortFunction | func | - | undefined |
Events
Event name | Type | Description |
---|---|---|
ready | object | Triggers when the component is ready |
l-control-scale(将任何自定义组件添加为表单控件比例)
Props
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
position | string | - | 'topright' | |
options | Leaflet options to pass to the component constructor | object | - | {} |
maxWidth | number | - | 100 | |
metric | boolean | - | true | |
imperial | boolean | - | true | |
updateWhenIdle | boolean | - | false |
Events
Event name | Type | Description |
---|---|---|
ready | object | Triggers when the component is ready |
l-control-zoom(将任何自定义组件添加为表单控件缩放)
Props
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
position | string | - | 'topright' | |
options | Leaflet options to pass to the component constructor | object | - | {} |
zoomInText | string | - | '+' | |
zoomInTitle | string | - | 'Zoom in' | |
zoomOutText | string | - | '-' | |
zoomOutTitle | string | - | 'Zoom out' |
Events
Event name | Type | Description |
---|---|---|
ready | object | Triggers when the component is ready |
#Info
l-popup(通过给定一些选项构造一个弹出框对象,对象用来描述出现形式和位置还有一个可选对象来根据指向的资源对象标注弹出框)
Props
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
content | string | - | null | |
options | Leaflet options to pass to the component constructor | object | - | {} |
latLng | object|array | - | () => [] |
Events
Event name | Type | Description |
---|---|---|
ready | object | Triggers when the component is ready |
l-tooltip(在地图上显示工具提示)
Props
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
content | string | - | null | |
options | Leaflet options to pass to the component constructor | object | - | {} |
Events
Event name | Type | Description |
---|---|---|
ready | object | Triggers when the component is ready |
#Grouping
l-feature-group(创建一个图组,视情况指定一组初始图层)
Props
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
pane | string | - | 'overlayPane' | |
attribution | string | - | null | |
name | string | - | undefined | |
layerType | string | - | undefined | |
visible | boolean | - | true | |
options | Leaflet options to pass to the component constructor | object | - | {} |
Events
Event name | Type | Description |
---|---|---|
update:visible | boolean | Triggers when the visible prop needs to be updated |
ready | object | Triggers when the component is ready |
l-layer-group(用来将几个图层组成一个组并作为一个图层来处理。如果你将其添加到地图上,组中任何图层的添加或移除都将使其同样在地图添加或删除。继承自ILayer接口)
Props
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
pane | string | - | 'overlayPane' | |
attribution | string | - | null | |
name | string | - | undefined | |
layerType | string | - | undefined | |
visible | boolean | - | true | |
options | Leaflet options to pass to the component constructor | object | - | {} |
Events
Event name | Type | Description |
---|---|---|
update:visible | boolean | Triggers when the visible prop needs to be updated |
ready | object | Triggers when the component is ready |
#Other
l-geo-json(创建一个GeoJSON图层。可以任意地接受GeoJSON格式的对象和选项对象并显示在地图上)
Props
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
pane | string | - | 'overlayPane' | |
attribution | string | - | null | |
name | string | - | undefined | |
layerType | string | - | undefined | |
visible | boolean | - | true | |
options | Leaflet options to pass to the component constructor | object | - | {} |
geojson | object|array | - | () => ({}) | |
optionsStyle | object|func | - | null |
Events
Event name | Type | Description |
---|---|---|
update:visible | boolean | Triggers when the visible prop needs to be updated |
ready | object | Triggers when the component is ready |
l-image-overlay(通过给定图像的URL和相关的地理范围来实例化一个图像叠加层对象。)
Props
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
pane | string | - | 'overlayPane' | |
attribution | string | - | null | |
name | string | - | undefined | |
layerType | string | - | undefined | |
visible | boolean | - | true | |
interactive | boolean | - | false | |
bubblingMouseEvents | boolean | - | true | |
url | string | - | ||
bounds | - | |||
opacity | number | - | 1.0 | |
alt | string | - | '' | |
crossOrigin | boolean | - | false | |
errorOverlayUrl | string | - | '' | |
zIndex | number | - | 1 | |
className | string | - | '' | |
options | Leaflet options to pass to the component constructor | object | - | {} |
Events
Event name | Type | Description |
---|---|---|
update:visible | boolean | Triggers when the visible prop needs to be updated |
ready | object | Triggers when the component is ready |
地址:https://vue2-leaflet.netlify.app/examples/geometry-test.html
geoJSon