SelectLayersControl
a Leaflet plugin which adds new control to switch between different layers on the map. New control extends L.Control.Layers and replaces radio button panel with select tag.
Install / Use
/learn @vogdb/SelectLayersControlREADME
Leaflet.SelectLayersControl
A Leaflet plugin which adds new control to switch between different layers on the map. New control extends L.Control.ActiveLayers and replaces radio button panel with select tag. This plugin will be useful for you when you have a lot of the base layers in the control. For example.
It is very hard to tap on a desirable layer and the "Clouds" layer can't be tapped at all on a screenshot below.

The SelectLayersControl plugin solving this problem.

Example usage
var attribution = '© <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>'
mapnikLayer = L.tileLayer(
'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
{attribution: attribution}
)
var blackAndWhite = L.tileLayer(
'http://{s}.www.toolserver.org/tiles/bw-mapnik/{z}/{x}/{y}.png',
{attribution: attribution}
)
var clouds = L.tileLayer('http://{s}.tile.openweathermap.org/map/clouds/{z}/{x}/{y}.png', {
attribution: 'Map data © <a href="http://openweathermap.org">OpenWeatherMap</a>',
opacity: 0.5
})
map = L.map('map', {
center: new L.LatLng(39.73, -104.99),
zoom: 10,
layers: [mapnikLayer, clouds]
})
var baseLayers = {
'Mapnik': mapnikLayer,
'Black and Whilte': blackAndWhite
}
var overlayLayers = {
'Clouds': clouds
}
var control = L.control.selectLayers(baseLayers, overlayLayers)
control.addTo(map)
API
Plugin inherits API from L.Control.Layers and L.Control.ActiveLayers.
Related Skills
node-connect
354.3kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
112.3kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
354.3kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
354.3kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
