leaflet Js custom control button add (text, hover)(传单Js自定义控制按钮添加(文字,悬停))
问题描述
我遵循了 这个 control-button-leaflet 教程,它对我有用.现在我想:
- 当我将鼠标悬停在按钮上时显示一些文本(例如使用缩放按钮)
- 当我将鼠标悬停在按钮上时更改按钮的颜色
- 能够在按钮内写入文本而不是图像.
代码如下:
var customControl = L.Control.extend({选项: {位置:左上角"},onAdd:函数(地图){var container = L.DomUtil.create('div', 'leaflet-bar Leaflet-control Leaflet-control-custom');container.style.backgroundColor = '白色';container.style.backgroundImage = "url(http://t1.gstatic.com/images?q=tbn:ANd9GcR6FCUMW5bPn8C4PbKak2BJQQsmC-K9-mbYBeFZm1ZM2w2GRy40Ew)";container.style.backgroundSize = "30px 30px";container.style.width = '30px';container.style.height = '30px';container.onclick = 函数(){console.log('buttonClicked');}返回容器;}});变量映射;var readyState = 函数(e){map = new L.Map('map').setView([48.935, 18.14], 14);L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png').addTo(map);map.addControl(new customControl());}window.addEventListener('DOMContentLoaded', readyState);
看来你比 div 更需要 Button:
var container = L.DomUtil.create('input');容器.type="按钮";
然后就可以轻松设置鼠标悬停文本了:
container.title="没有猫";
还有一些文字而不是图片:
container.value = "42";
您可以使用鼠标事件来设置按钮样式:
container.onmouseover = function(){container.style.backgroundColor = '粉色';}容器.onmouseout = 函数(){container.style.backgroundColor = '白色';}
(你当然可以用 css 完成最后一部分,可能更优雅)
完整示例:http://codepen.io/anon/pen/oXVMvyp>
I followed this control-button-leaflet tutorial and it worked for me. Now I want to:
- show some text when i hover over the button (like with the zoom buttons)
- Change the color of the button when i hover over it
- be able to write text inside the button instead of an image.
Here's the code:
var customControl = L.Control.extend({
options: {
position: 'topleft'
},
onAdd: function (map) {
var container = L.DomUtil.create('div', 'leaflet-bar leaflet-control leaflet-control-custom');
container.style.backgroundColor = 'white';
container.style.backgroundImage = "url(http://t1.gstatic.com/images?q=tbn:ANd9GcR6FCUMW5bPn8C4PbKak2BJQQsmC-K9-mbYBeFZm1ZM2w2GRy40Ew)";
container.style.backgroundSize = "30px 30px";
container.style.width = '30px';
container.style.height = '30px';
container.onclick = function(){
console.log('buttonClicked');
}
return container;
}
});
var map;
var readyState = function(e){
map = new L.Map('map').setView([48.935, 18.14], 14);
L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png').addTo(map);
map.addControl(new customControl());
}
window.addEventListener('DOMContentLoaded', readyState);
It seems you more need a Button than a div:
var container = L.DomUtil.create('input');
container.type="button";
Then you can easily set a mouseover text:
container.title="No cat";
And some Text instead of an image:
container.value = "42";
And you can use the mouse events to style the button:
container.onmouseover = function(){ container.style.backgroundColor = 'pink'; } container.onmouseout = function(){ container.style.backgroundColor = 'white'; }
(you could of course do this last part with css, might be more elegant)
Full example: http://codepen.io/anon/pen/oXVMvy
这篇关于传单Js自定义控制按钮添加(文字,悬停)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:传单Js自定义控制按钮添加(文字,悬停)
基础教程推荐
- 直接将值设置为滑块 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01