Does ArcGIS Runtime for .NET support time enabled layers and specifically raster catalogs?

1825
2
Jump to solution
11-05-2014 08:10 AM
ThomasCox
Occasional Contributor

I looked at the samples and did not see any reference to time enabled layers.  Any insight would be greatly appreciated

0 Kudos
1 Solution

Accepted Solutions
DominiqueBroux
Esri Frequent Contributor

You can set the MapView TimeExtent property. Then the layers that support time will use it.

Example:

<esri:MapView>

  <esri:MapView.TimeExtent >

    <esri:TimeExtent Start="07/01/2004" End="07/01/2004" />

  </esri:MapView.TimeExtent>

  <esri:Map >

    <esri:ArcGISImageServiceLayer ServiceUri="http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/World/MODIS/ImageServer" />

  </esri:Map>

</esri:MapView>

View solution in original post

0 Kudos
2 Replies
DominiqueBroux
Esri Frequent Contributor

You can set the MapView TimeExtent property. Then the layers that support time will use it.

Example:

<esri:MapView>

  <esri:MapView.TimeExtent >

    <esri:TimeExtent Start="07/01/2004" End="07/01/2004" />

  </esri:MapView.TimeExtent>

  <esri:Map >

    <esri:ArcGISImageServiceLayer ServiceUri="http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/World/MODIS/ImageServer" />

  </esri:Map>

</esri:MapView>

0 Kudos
ThomasCox
Occasional Contributor

Thanks for the prompt reply.  I am not sure how I will transition some of my existing ArcObject applications to this as I have numerous time layers with various time extents.  I appreciate your help.

0 Kudos