现在,我使用 Esri Leaflet http://esri.github.io/esri-leaflet/examples/premium-content.html
我想访问 Arcgis 世界交通服务历史数据,
因为,我只得到了实时交通数据。
我可以访问一个月前或其他几天前的流量数据吗?
我想玩 3 天或 7 天的变化,这就是为什么我需要访问历史数据
现在,我使用 Esri Leaflet http://esri.github.io/esri-leaflet/examples/premium-content.html
我想访问 Arcgis 世界交通服务历史数据,
因为,我只得到了实时交通数据。
我可以访问一个月前或其他几天前的流量数据吗?
我想玩 3 天或 7 天的变化,这就是为什么我需要访问历史数据
我可以访问一个月前或其他几天前的流量数据吗?
是的。ArcGIS World Traffic 是一项启用时间的服务,这意味着它支持将任何 Epoch 时间戳(以毫秒为单位)作为time
请求参数传递。
https://traffic.arcgis.com/arcgis/rest/services/World/Traffic/MapServer/export?...time=1526022000000
在 Esri Leaflet 中,您可以使用to
和from
构造函数选项(现场演示)或setTimeRange()
.