有没有办法不显示UTC时间,只显示本地时间?因为时差的关系,UTC时间有点奇怪。我参考这个网站。
vktxenjb1#
当你点击时间部分时,UTC时间会变成本地时间,反之亦然。如果你添加timeZones: ["Local", "UTC"]并从timeZones数组(https://github.com/socib/Leaflet.TimeDimension#ltimedimensionplayer)中更改序列,你可以将默认值设置为本地时间。
timeZones: ["Local", "UTC"]
const timeDimensionControl = L.control.timeDimension({ loopButton: true, autoPlay: false, timeZones: ["Local", "UTC"] });
1条答案
按热度按时间vktxenjb1#
当你点击时间部分时,UTC时间会变成本地时间,反之亦然。如果你添加
timeZones: ["Local", "UTC"]
并从timeZones数组(https://github.com/socib/Leaflet.TimeDimension#ltimedimensionplayer)中更改序列,你可以将默认值设置为本地时间。