Arcgis World Traffic Service 是否支持历史数据?
Does Arcgis World Traffic Service Support History Data?
现在,我使用 Esri Leaflet http://esri.github.io/esri-leaflet/examples/premium-content.html
我想访问 Arcgis World Traffic Service 历史数据,
因为,我只得到了一个实时路况数据。
我可以访问一个月前或几天前的流量数据吗?
我想玩 3 天或 7 天的变化,所以我需要访问历史数据
May I access one month ago traffic data or another days?
是的。 ArcGIS World Traffic 是一项启用时间的服务,这意味着它支持传递任何 Epoch 时间戳(in milliseconds) as the time
请求参数。
https://traffic.arcgis.com/arcgis/rest/services/World/Traffic/MapServer/export?...time=1526022000000
在 Esri Leaflet 中,您可以使用 to
和 from
构造函数选项(live demo) or setTimeRange()
.
现在,我使用 Esri Leaflet http://esri.github.io/esri-leaflet/examples/premium-content.html
我想访问 Arcgis World Traffic Service 历史数据,
因为,我只得到了一个实时路况数据。
我可以访问一个月前或几天前的流量数据吗?
我想玩 3 天或 7 天的变化,所以我需要访问历史数据
May I access one month ago traffic data or another days?
是的。 ArcGIS World Traffic 是一项启用时间的服务,这意味着它支持传递任何 Epoch 时间戳(in milliseconds) as the time
请求参数。
https://traffic.arcgis.com/arcgis/rest/services/World/Traffic/MapServer/export?...time=1526022000000
在 Esri Leaflet 中,您可以使用 to
和 from
构造函数选项(live demo) or setTimeRange()
.