Raruto
Raruto
Hi hupe, if you want to investigate a bit you can look at here: https://github.com/Raruto/leaflet-elevation/blob/3ee745d71ed172979b7bfe0ff52f7c63214d3c04/src/components/chart.js#L416-L442 https://github.com/Raruto/leaflet-elevation/blob/3ee745d71ed172979b7bfe0ff52f7c63214d3c04/src/components/d3.js#L430-L487 Honestly, if you don't have a clever solution, i don't think i'll get into...
Hi hupe, the problem should be near to these lines: https://github.com/Raruto/leaflet-elevation/blob/2589a937188792eae88c9822a5627845aed2027d/src/components/d3.js#L271 https://github.com/Raruto/leaflet-elevation/blob/46918ce42f27cc438e969407ae0a85bc56801132/src/components/chart.js#L573-L581 To understand how you can make a string translatable you can take look at: [yohanboniface/Leaflet.i18n](https://github.com/yohanboniface/Leaflet.i18n) _courtesy of [leaflet-ui](https://github.com/Raruto/leaflet-ui/commit/6224b0999c11f7dddaccde947ec9d363fdb72662)...
Hi @bard0x, > do you have ever developed any kind of leaflet plugin in order to provide the ability to replay GPS tracks along a marker and eventualy a polyline...
Based on: https://gis.stackexchange.com/a/415412 > You can insert a Polygon feature without any coordinates and set your properties as you like: > > ```jsonc > { > "type": "FeatureCollection", > "features":...
> expose a method like getGpxData rather than having a feature with magical meaning I was trying to keep it simple (and quickly testable) From my point of view `rte`...
> during rotation the path don't follow, it moves on its own. It could also be that it simply doesn't rotate. Or it could be also related due to an...
Patch released in version **2.2.8**
Hi @jayantpaliwal, Javascript dependencies are lazy loaded only when not found on the page, ie. a previous ``: https://github.com/Raruto/leaflet-kmz/blob/ed43fe930ddd93267278ad0c734ce699ecdd607a/src/KMZLayer.js#L140-L152 The version provided by this plugin is not mandatory, otherwise please...
I think it has already been addressed in the past, it could be a good starting point for start writing some tests for it. 😉 👋 Raruto
Hi @hupe13, just to give you a starting point: ## CSS only solution (-25deg) ```css .point > text { text-anchor: middle; transform: translateY(-5px) rotate(-25deg); } ```  ## JS only...