<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Is it possible to display this ImageServer layer by a specific date? in Flutter Maps SDK Questions</title>
    <link>https://community.esri.com/t5/flutter-maps-sdk-questions/is-it-possible-to-display-this-imageserver-layer/m-p/1688506#M169</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can &lt;SPAN&gt;display the data for a specific date&amp;nbsp;&lt;/SPAN&gt;by setting MapViewController.timeExtent. Here are some codes for your reference:&lt;/P&gt;&lt;LI-CODE lang="kotlin"&gt; Future&amp;lt;void&amp;gt; onMapViewReady() async{
    _imageServiceRaster = ImageServiceRaster(
      uri: Uri.parse(
        'https://sampleserver6.arcgisonline.com/arcgis/rest/services/ScientificData/SeaTemperature/ImageServer',
      ),
    );
    _imageServiceLayer = RasterLayer.withRaster(_imageServiceRaster);
    await _imageServiceLayer.load();

    _fullTimeExtent = _imageServiceLayer.fullTimeExtent!;
    final map = ArcGISMap.withBasemapStyle(BasemapStyle.arcGISOceansLabels);
    map.operationalLayers.add(_imageServiceLayer);
    map.initialViewpoint = Viewpoint.fromTargetExtent(
      _imageServiceLayer.fullExtent!,
    );
    _mapViewController.arcGISMap = map;
  }

  // Update the map's time extent based on the slider value
  void updateTimeExtent(double value) {
    final startTime = _fullTimeExtent?.startTime?.add(Duration(days: value.round()));
    if (startTime != null) {
      _mapViewController.timeExtent = TimeExtent(
        startTime: startTime,
        endTime: startTime.add(const Duration(days: 10)),// Set a fixed time window of 10 days for demonstration
      );
    }
  }&lt;/LI-CODE&gt;</description>
    <pubDate>Wed, 04 Mar 2026 21:29:08 GMT</pubDate>
    <dc:creator>ChanganShi1</dc:creator>
    <dc:date>2026-03-04T21:29:08Z</dc:date>
    <item>
      <title>Is it possible to display this ImageServer layer by a specific date?</title>
      <link>https://community.esri.com/t5/flutter-maps-sdk-questions/is-it-possible-to-display-this-imageserver-layer/m-p/1688309#M168</link>
      <description>&lt;P&gt;The following ImageServer layer:&lt;BR /&gt;&lt;A title="ImageServer" href="https://sampleserver6.arcgisonline.com/arcgis/rest/services/ScientificData/SeaTemperature/ImageServer" target="_self"&gt;https://sampleserver6.arcgisonline.com/arcgis/rest/services/ScientificData/SeaTemperature/ImageServer&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to display the data for a specific date (e.g., June 14, 2014) in a Flutter app using the ArcGIS Maps SDK?&lt;/P&gt;&lt;P&gt;If so, how can I set the time parameter to show data for that date only?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2026 13:46:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/flutter-maps-sdk-questions/is-it-possible-to-display-this-imageserver-layer/m-p/1688309#M168</guid>
      <dc:creator>Antigravity</dc:creator>
      <dc:date>2026-03-04T13:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to display this ImageServer layer by a specific date?</title>
      <link>https://community.esri.com/t5/flutter-maps-sdk-questions/is-it-possible-to-display-this-imageserver-layer/m-p/1688506#M169</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can &lt;SPAN&gt;display the data for a specific date&amp;nbsp;&lt;/SPAN&gt;by setting MapViewController.timeExtent. Here are some codes for your reference:&lt;/P&gt;&lt;LI-CODE lang="kotlin"&gt; Future&amp;lt;void&amp;gt; onMapViewReady() async{
    _imageServiceRaster = ImageServiceRaster(
      uri: Uri.parse(
        'https://sampleserver6.arcgisonline.com/arcgis/rest/services/ScientificData/SeaTemperature/ImageServer',
      ),
    );
    _imageServiceLayer = RasterLayer.withRaster(_imageServiceRaster);
    await _imageServiceLayer.load();

    _fullTimeExtent = _imageServiceLayer.fullTimeExtent!;
    final map = ArcGISMap.withBasemapStyle(BasemapStyle.arcGISOceansLabels);
    map.operationalLayers.add(_imageServiceLayer);
    map.initialViewpoint = Viewpoint.fromTargetExtent(
      _imageServiceLayer.fullExtent!,
    );
    _mapViewController.arcGISMap = map;
  }

  // Update the map's time extent based on the slider value
  void updateTimeExtent(double value) {
    final startTime = _fullTimeExtent?.startTime?.add(Duration(days: value.round()));
    if (startTime != null) {
      _mapViewController.timeExtent = TimeExtent(
        startTime: startTime,
        endTime: startTime.add(const Duration(days: 10)),// Set a fixed time window of 10 days for demonstration
      );
    }
  }&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 04 Mar 2026 21:29:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/flutter-maps-sdk-questions/is-it-possible-to-display-this-imageserver-layer/m-p/1688506#M169</guid>
      <dc:creator>ChanganShi1</dc:creator>
      <dc:date>2026-03-04T21:29:08Z</dc:date>
    </item>
  </channel>
</rss>

