I'm trying to override the tooltip style of Leaflet 1.3.1.and want to completely remove the tooltip pointer as shown in figure.
This is my css:
.ToolTipProvince{
font-size: 15px;
font-weight:bold;
padding: 0px;
background: none;
border: none;
color: aqua;
text-shadow: 0px 0px 10px black;
box-shadow: none;
outline: none;
}
and applying style to layer tooltip:
layer.bindTooltip("Province Number: "+feature.properties.PROVINCE+"", {permanent: true, direction: 'centre', className: 'ToolTipProvince'});
L.Tooltipwhen you want to use aL.DivIcon– IvanSanchez Apr 18 '18 at 07:19