Skip to content

Commit

Permalink
don't round time (#5149)
Browse files Browse the repository at this point in the history
  • Loading branch information
PatchesMaps authored Apr 30, 2024
1 parent b8759c3 commit 521c2d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/js/map/layerbuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ export default function mapLayerBuilder(config, cache, store) {
tileSize: tileSize[0],
};

const urlParameters = `?TIME=${util.toISOStringSeconds(util.roundTimeOneMinute(layerDate))}`;
const urlParameters = `?TIME=${util.toISOStringSeconds(layerDate)}`;
const sourceURL = def.sourceOverride || configSource.url;
const sourceOptions = {
url: sourceURL + urlParameters,
Expand Down

0 comments on commit 521c2d5

Please sign in to comment.