Making Leaflet tooltip clickable(使传单工具提示可点击)
问题描述
我想在 Leaflet 地图(不带标记)上添加 工具提示 并使其可点击.以下代码添加了一个工具提示,但它不可点击:
I want to add tooltips on a Leaflet map (without markers) and make them clickable. The following code adds a tooltip but it's not clickable:
var tooltip = L.tooltip({
direction: 'center',
permanent: true,
interactive: true,
noWrap: true,
opacity: 0.9
});
tooltip.setContent( "Example" );
tooltip.setLatLng(new L.LatLng(someLat, someLon));
tooltip.addTo(myLayer);
tooltip.on('click', function(event) {
console.log("Click!");
});
我怎样才能让它工作?
推荐答案
要接收对 L.Tooltip
对象的点击,您需要:
To receive clicks on a L.Tooltip
object, you'll need to :
在关联的 DOM 对象上设置监听器:
set up a listener on the associated DOM object :
var el = tooltip.getElement();
el.addEventListener('click', function() {
console.log("click");
});
删除 pointer-events: none
在该元素上设置的属性:
remove the pointer-events: none
property set on that element:
var el = tooltip.getElement();
el.style.pointerEvents = 'auto';
到目前为止的演示
var map = L.map(document.getElementById('map')).setView([48.8583736, 2.2922926], 4);
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
var tooltip = L.tooltip({
direction: 'center',
permanent: true,
interactive: true,
noWrap: true,
opacity: 0.9
});
tooltip.setContent( "Example" );
tooltip.setLatLng(new L.LatLng(48.8583736, 2.2922926));
tooltip.addTo(map);
var el = tooltip.getElement();
el.addEventListener('click', function() {
console.log("click");
});
el.style.pointerEvents = 'auto';
html, body {
height: 100%;
margin: 0;
}
#map {
width: 100%;
height: 180px;
}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.3.1/leaflet.css"/>
<script src="aHR0cHM6Ly9jZG5qcy5jbG91ZGZsYXJlLmNvbS9hamF4L2xpYnMvbGVhZmxldC8xLjMuMS9sZWFmbGV0Lmpz"></script>
<div id='map'></div>
如果您想创建组件或直接监听工具提示对象,您可以扩展 L.Tooltip
以将这些更改直接烘焙到定义中:
If you want to create a component or listen directly to a tooltip object, you can extend L.Tooltip
to bake those alterations directly into the definition:
L.ClickableTooltip = L.Tooltip.extend({
onAdd: function (map) {
L.Tooltip.prototype.onAdd.call(this, map);
var el = this.getElement(),
self = this;
el.addEventListener('click', function() {
self.fire("click");
});
el.style.pointerEvents = 'auto';
}
});
var tooltip = new L.ClickableTooltip({
direction: 'center',
permanent: true,
noWrap: true,
opacity: 0.9
});
tooltip.setContent( "Example" );
tooltip.setLatLng(new L.LatLng(48.8583736, 2.2922926));
tooltip.addTo(map);
tooltip.on('click', function(e) {
console.log("clicked", JSON.stringify(e.target.getLatLng()));
});
还有一个演示
L.ClickableTooltip = L.Tooltip.extend({
onAdd: function (map) {
L.Tooltip.prototype.onAdd.call(this, map);
var el = this.getElement(),
self = this;
el.addEventListener('click', function() {
self.fire("click");
});
el.style.pointerEvents = 'auto';
}
});
var map = L.map(document.getElementById('map')).setView([48.8583736, 2.2922926], 4);
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
var tooltip = new L.ClickableTooltip({
direction: 'center',
permanent: true,
noWrap: true,
opacity: 0.9
});
tooltip.setContent( "Example" );
tooltip.setLatLng(new L.LatLng(48.8583736, 2.2922926));
tooltip.addTo(map);
tooltip.on('click', function(e) {
console.log("clicked", JSON.stringify(e.target.getLatLng()));
});
html, body {
height: 100%;
margin: 0;
}
#map {
width: 100%;
height: 180px;
}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.3.1/leaflet.css"/>
<script src="aHR0cHM6Ly9jZG5qcy5jbG91ZGZsYXJlLmNvbS9hamF4L2xpYnMvbGVhZmxldC8xLjMuMS9sZWFmbGV0Lmpz"></script>
<div id='map'></div>
这篇关于使传单工具提示可点击的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使传单工具提示可点击


- Flexslider 箭头未正确显示 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06