Sylvain Marcadal (Ram)

Results 62 comments of Sylvain Marcadal (Ram)

You can try that, but the actual code deal with one other thing : remove obsolete features. Not useful in your case but still allow to display only the last...

This is only for timeDimension itself. Features on geoJSON only support `time` or `times` array : https://github.com/socib/Leaflet.TimeDimension#ltimedimensionlayergeojson You can change this behavior by overriding `_getFeatureTimes` or ` _getFeatureBetweenDates` on a...

```js L.TimeDimension.Layer.GeoJsonWithPeriod = L.TimeDimension.Layer.GeoJson.extend({ _getFeatureTimes: function(feature) { if (!feature.properties) { return []; } if (feature.properties.hasOwnProperty('times')) { return L.TimeDimension.Util.parseTimesExpression(feature.properties.times); } return []; } }) ``` Something like that.

I'm not sure how you want to retreive your times (layer wize or map wize) For layer level, you can inherit from L.TimeDimension.Layer.GeoJson and override `_getFeatureTimes`. or L.TimeDimension.Layer.WMS `_requestTimeDimensionFromCapabilities` On...

What version are you using ? This should have been fixed #10

`bower install leaflet-timedimension` Installed version 1.0.1 for me, and it has everything needed. Check your `bower.json` file or use `bower install --save leaflet-timedimension#^1.0.1`

I only scanned your code. But trying using play/pause instead of pause/continue. These are internal only, even if their names do not start with a dash. Then I see that...

About the player, I am aware of this limitation : opened #56 for that. Your WMS is painfully slow, and I can't help you more your code. Maybe that's a...

> it calls for the layer with no time dimension in the web Do you add both the seed layer and the timedimension one to the map ? You must...

I'm sure not about your expectation. But you can try to hide the layer and show it only after changing the time.