html 时间维度说明书显示当地时间

7xllpg7q  于 2023-03-06  发布在  其他
关注(0)|答案(1)|浏览(128)

有没有办法不显示UTC时间,只显示本地时间?因为时差的关系,UTC时间有点奇怪。
我参考这个网站。

vktxenjb

vktxenjb1#

当你点击时间部分时,UTC时间会变成本地时间,反之亦然。如果你添加timeZones: ["Local", "UTC"]并从timeZones数组(https://github.com/socib/Leaflet.TimeDimension#ltimedimensionplayer)中更改序列,你可以将默认值设置为本地时间。

const timeDimensionControl = L.control.timeDimension({
    loopButton: true,
    autoPlay: false,
    timeZones: ["Local", "UTC"]
});

相关问题