Florian Bischof

Results 304 comments of Florian Bischof
trafficstars

@geyerbri thx, it was working when the time attribute was binded to the options. But it was not working on the feature properties from geojson. Is fixed now

@EParisot can you please create demo on jsfiddle.net or so

I think we should add the following rule so that the user can have the outline when tabbing, but is not disturbed when using the mouse. ``` .leaflet-container path.leaflet-interactive :focus:not(:focus-visible)...

I just had a space to much in the css, this one is correct: ``` .leaflet-container path.leaflet-interactive:focus:not(:focus-visible) { outline: 0; } ``` See: https://plnkr.co/edit/LaSeBR3E5z1Pak8d

Without your code we can't help you much. Please create a demo: https://jsfiddle.net/o1dwu2vg/ Are you doing following? ``` // from default en to de map.pm.setLang('de'); ``` and later: ``` //...

Can you please create a sandbox / demo where we can analyse this?

Currently this is not built in, but we will think about adding it. You can use following code: ``` const createMarkerProto = L.PM.Draw.Line.prototype._createMarker; const setTooltipTextProto = L.PM.Draw.Line.prototype._setTooltipText; L.PM.Draw.Line.include({ _createMarker: function(latlng){...

Nice idea, but I don't know if we should implement it in the core code. I will discuss it with @codeofsumit

If I understand you correctly, you suggest to move the `hasSelfIntersection()` call into `_onMarkerDragStart`. We can't do this, because we need to check after moving a vertex, we need to...