默认情况下,leafletJS 在加载地图时,背景图块都是灰色的.我想将该颜色更改为黑色(或任何其他任意颜色).我该怎么做?
By default, when leafletJS is loading a map, the background tiles are all grey. I'd like to change that color to be black (or any other arbitrary color). How can I go about doing this?
它由文件'leaflet.css'中的以下css规则控制:
It's controlled by the below css rule in the file 'leaflet.css':
.leaflet-container {
background: #ddd;
}
所以你只需要改变这个规则.
so you just need to change this rule.
这篇关于如何更改 LeafletJS 中的默认加载磁贴颜色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
检查一个多边形点是否在传单中的另一个内部Check if a polygon point is inside another in leaflet(检查一个多边形点是否在传单中的另一个内部)
更改传单标记群集图标颜色,继承其余默认 CSSChanging leaflet markercluster icon color, inheriting the rest of the default CSS properties(更改传单标记群集图标颜色,继承其余默认
触发点击传单标记Trigger click on leaflet marker(触发点击传单标记)
将 Leaflet 图层控件添加到侧边栏Adding Leaflet layer control to sidebar(将 Leaflet 图层控件添加到侧边栏)
Leaflet - 在弹出窗口中获取标记的纬度和经度Leaflet - get latitude and longitude of a marker inside a pop-up(Leaflet - 在弹出窗口中获取标记的纬度和经度)
如何将两个 geoJSON 特征集合添加到两个图层组中How to add two geoJSON feature collections in to two layer groups(如何将两个 geoJSON 特征集合添加到两个图层组中)