<?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: Timeslider not working in Appstudio in Qt Maps SDK Questions</title>
    <link>https://community.esri.com/t5/qt-maps-sdk-questions/timeslider-not-working-in-appstudio/m-p/1327169#M5026</link>
    <description>&lt;LI-CODE lang="c"&gt;import QtQuick 2.7
import QtQuick.Controls 2.1
import QtQuick.Controls.Styles 1.4
import QtQuick.Controls.Material 2.1

import ArcGIS.AppFramework 1.0
import Esri.ArcGISRuntime 100.15
import Esri.ArcGISRuntime.Toolkit 100.15

 
Item {

    property real scaleFactor: AppFramework.displayScaleFactor

 
    // Map view UI presentation at top
    MapView {
        id: mv
        anchors.fill: parent

 
        //! [Display Feature Service]
        Map {
            BasemapTerrainWithLabels {}

 
            FeatureLayer {
               ServiceFeatureTable {
                   id: featureLayer
                   url: "https://services5.arcgis.com/N82JbI5EYtAkuUKU/ArcGIS/rest/services/Time_atlantic_hurricanes_2000_Hosted/FeatureServer/0"
               }
            }
        }

 
        // Add a TimeSlider from the toolkit to the MapView
        TimeSlider {
            anchors {
                left: parent.left
                right: parent.right
                bottom: parent.bottom
            }

 
            geoView: mv
        }
    }
}&lt;/LI-CODE&gt;</description>
    <pubDate>Mon, 11 Sep 2023 08:34:53 GMT</pubDate>
    <dc:creator>PietroMaps</dc:creator>
    <dc:date>2023-09-11T08:34:53Z</dc:date>
    <item>
      <title>Timeslider not working in Appstudio</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/timeslider-not-working-in-appstudio/m-p/1327168#M5025</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;we are trying to integrate the TimeSlider widget in Appstudio, but it seems the widget is not working properly most of the times.&lt;/P&gt;&lt;P&gt;This is a demo code to reproduce the bug, using Esri's services:&lt;/P&gt;&lt;P&gt;&amp;nbsp;import QtQuick 2.7 import QtQuick.Controls 2.1 import QtQuick.Controls.Styles 1.4 import QtQuick.Controls.Material 2.1 import ArcGIS.AppFramework 1.0 import Esri.ArcGISRuntime 100.15 import Esri.ArcGISRuntime.Toolkit 100.15 Item { property real scaleFactor: AppFramework.displayScaleFactor // Map view UI presentation at top MapView { id: mv anchors.fill: parent Map { BasemapTerrainWithLabels {} FeatureLayer { ServiceFeatureTable { id: featureLayer url: "&lt;A href="https://services5.arcgis.com/N82JbI5EYtAkuUKU/ArcGIS/rest/services/Time_atlantic_hurricanes_2000_Hosted/FeatureServer/0" target="_blank" rel="noopener"&gt;https://services5.arcgis.com/N82JbI5EYtAkuUKU/ArcGIS/rest/services/Time_atlantic_hurricanes_2000_Hosted/FeatureServer/0&lt;/A&gt;" } } } // Add a TimeSlider from the toolkit to the MapView TimeSlider { anchors { left: parent.left right: parent.right bottom: parent.bottom } geoView: mv } } }&amp;nbsp;&lt;/P&gt;&lt;P&gt;With this other FeareService the widget loads and it seems to work:&lt;/P&gt;&lt;PRE&gt;https://services5.arcgis.com/N82JbI5EYtAkuUKU/ArcGIS/rest/services/Hurricane_time_enabled_layer_2005_1_day/FeatureServer/0&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only difference I can recognize in the previous layers is the type of geometry (points vs polylines). Also, in the web version the widget is working properly for both of them.&lt;/P&gt;&lt;P&gt;I am using the latest version of Appstudio (5.5).&lt;/P&gt;&lt;P&gt;Thanks in advance for your support!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2023 08:31:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/timeslider-not-working-in-appstudio/m-p/1327168#M5025</guid>
      <dc:creator>PietroMaps</dc:creator>
      <dc:date>2023-09-11T08:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: Timeslider not working in Appstudio</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/timeslider-not-working-in-appstudio/m-p/1327169#M5026</link>
      <description>&lt;LI-CODE lang="c"&gt;import QtQuick 2.7
import QtQuick.Controls 2.1
import QtQuick.Controls.Styles 1.4
import QtQuick.Controls.Material 2.1

import ArcGIS.AppFramework 1.0
import Esri.ArcGISRuntime 100.15
import Esri.ArcGISRuntime.Toolkit 100.15

 
Item {

    property real scaleFactor: AppFramework.displayScaleFactor

 
    // Map view UI presentation at top
    MapView {
        id: mv
        anchors.fill: parent

 
        //! [Display Feature Service]
        Map {
            BasemapTerrainWithLabels {}

 
            FeatureLayer {
               ServiceFeatureTable {
                   id: featureLayer
                   url: "https://services5.arcgis.com/N82JbI5EYtAkuUKU/ArcGIS/rest/services/Time_atlantic_hurricanes_2000_Hosted/FeatureServer/0"
               }
            }
        }

 
        // Add a TimeSlider from the toolkit to the MapView
        TimeSlider {
            anchors {
                left: parent.left
                right: parent.right
                bottom: parent.bottom
            }

 
            geoView: mv
        }
    }
}&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 11 Sep 2023 08:34:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/timeslider-not-working-in-appstudio/m-p/1327169#M5026</guid>
      <dc:creator>PietroMaps</dc:creator>
      <dc:date>2023-09-11T08:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Timeslider not working in Appstudio</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/timeslider-not-working-in-appstudio/m-p/1331324#M5051</link>
      <description>&lt;P&gt;Hello Pietro,&lt;/P&gt;&lt;P&gt;Sorry for the delay to answer.&lt;/P&gt;&lt;P&gt;I can reproduce this problem and I'm trying to understand it. I'll be back soon.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Sep 2023 02:58:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/timeslider-not-working-in-appstudio/m-p/1331324#M5051</guid>
      <dc:creator>GuillaumeBelz</dc:creator>
      <dc:date>2023-09-22T02:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: Timeslider not working in Appstudio</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/timeslider-not-working-in-appstudio/m-p/1332514#M5068</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;TimeSlider uses "Time Interval" and "Time Interval Units" from JSON to determine the range in TimeSlider. In&amp;nbsp;HurricaneTracks2005, these values are defined, but not in&amp;nbsp;Time_atlantic_hurricanes_2000_Hosted. Online MapViewer uses default values to work.&lt;/P&gt;&lt;P&gt;We're working to determine if this should be considered as a bug or if these "Timer Interval" settings are not supported.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2023 16:20:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/timeslider-not-working-in-appstudio/m-p/1332514#M5068</guid>
      <dc:creator>GuillaumeBelz</dc:creator>
      <dc:date>2023-09-26T16:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: Timeslider not working in Appstudio</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/timeslider-not-working-in-appstudio/m-p/1335352#M5093</link>
      <description>&lt;P&gt;Hello, ok thank you so much.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2023 13:52:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/timeslider-not-working-in-appstudio/m-p/1335352#M5093</guid>
      <dc:creator>PietroMaps</dc:creator>
      <dc:date>2023-10-05T13:52:43Z</dc:date>
    </item>
  </channel>
</rss>

