使用 TimeSlider 过滤要素

尝试一下在线预览

此示例演示如何使用 TimeSlider 微件过滤 GeoJSONLayer 中的时态数据。这可以通过创建新的 FeatureFilter 并通过观察对 TimeSlider 的 timeExtent 的更改来更新过滤器的 timeExtent 属性来完成。

初始化 GeoJSONLayer 时,将指定图层的 timeInfo 属性,如下所示:

            
1
2
3
4
5
6
7
8
9
10
11
12
 const layer = new GeoJSONLayer({
  ...
  // specify timeInfo for the layer
  timeInfo: {
    startField: "time", // name of the date field
    interval: { // specify time interval for
      unit: "days",
      value: 1
    }
  }
  ...
 });

然后,创建 TimeSlider 微件的实例并将其添加到视图中。加载图层后,将从图层的 timeInfo 信息设置 TimeSlider 的其他属性。

                                                                                                                                                                                                                                                                                                                                                    
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
<html>
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no"/>
    <title>Filter features with TimeSlider | Sample | GeoScene API for JavaScript 4.22</title>

    <style>
      html,
      body,
      #viewDiv {
        padding: 0;
        margin: 0;
        height: 100%;
        width: 100%;
      #timeSlider {
        width: 400px;
      #infoDiv {
        height: 200px;
        padding: 10px;
        width: 280px;
      #infoDiv span {
        color: #F9C653;
        font-size: 12pt;
        font-weight: bolder;
    </style>

    <link rel="stylesheet" href="https://js.geoscene.cn/4.23/geoscene/themes/dark/main.css" />
    <script src="https://js.geoscene.cn/4.23/"></script>
    <script>
      require([
        "geoscene/Map",
        "geoscene/views/MapView",
        "geoscene/layers/GeoJSONLayer",
        "geoscene/widgets/TimeSlider",
        "geoscene/widgets/Expand",
        "geoscene/widgets/Legend"
      ], (Map, MapView, GeoJSONLayer, TimeSlider, Expand, Legend) => {
        let layerView;
        // set the timeInfo on GeoJSONLayer at the time initialization
        const layer = new GeoJSONLayer({
          url: "https://bsvensson.github.io/various-tests/geojson/usgs-earthquakes-06182019.geojson",
          copyright: "USGS Earthquakes",
          title: "USGS Earthquakes",
          // set the CSVLayer's timeInfo based on the date field
          timeInfo: {
            startField: "time", // name of the date field
            interval: {
              // set time interval to one day
              unit: "days",
              value: 1
          orderBy: {
            field: "mag"
          renderer: {
            type: "simple",
            field: "mag",
            symbol: {
              type: "simple-marker",
              color: "orange",
              outline: null
            visualVariables: [
                type: "size",
                field: "mag",
                stops: [
                    value: 1,
                    size: "5px"
                    value: 2,
                    size: "15"
                    value: 3,
                    size: "35"
                type: "color",
                field: "depth",
                stops: [
                    value: 2.5,
                    color: "#F9C653",
                    label: "<2km"
                    value: 3.5,
                    color: "#F8864D",
                    label: "3km"
                    value: 4,
                    color: "#C53C06",
                    label: ">4km"
          popupTemplate: {
            title: "{title}",
            content: [
                type: "fields",
                fieldInfos: [
                    fieldName: "place",
                    label: "Location",
                    visible: true
                    fieldName: "mag",
                    label: "Magnitude",
                    visible: true
                    fieldName: "depth",
                    label: "Depth",
                    visible: true
        const map = new Map({
          basemap: "geoscene-blue",
          layers: [layer]
        const view = new MapView({
          map: map,
          container: "viewDiv",
          zoom: 13,
          center: [-117.512764, 34.04355]
        // create a new time slider widget
        // set other properties when the layer view is loaded
        // by default timeSlider.mode is "time-window" - shows
        // data falls within time range
        const timeSlider = new TimeSlider({
          container: "timeSlider",
          playRate: 50,
          stops: {
            interval: {
              value: 1,
              unit: "hours"
            }
          }
        });
        view.ui.add(timeSlider, "bottom-left");

        // wait till the layer view is loaded
        view.whenLayerView(layer).then((lv) => {
          layerView = lv;

          // start time of the time slider - 5/25/2019
          const start = new Date(2019, 4, 25);
          // set time slider's full extent to
          // 5/25/5019 - until end date of layer's fullTimeExtent
          timeSlider.fullTimeExtent = {
            start: start,
            end: layer.timeInfo.fullTimeExtent.end
          };

          // We will be showing earthquakes with one day interval
          // when the app is loaded we will show earthquakes that
          // happened between 5/25 - 5/26.
          let end = new Date(start);
          // end of current time extent for time slider
          // showing earthquakes with one day interval
          end.setDate(end.getDate() + 1);

          // timeExtent property is set so that timeslider
          // widget show the first day. We are setting
          // the thumbs positions.
          timeSlider.timeExtent = {start, end};
        });
        // watch for time slider timeExtent change
        timeSlider.watch("timeExtent", () => {
          // only show earthquakes happened up until the end of
          // timeSlider's current time extent.
            "time <= " + timeSlider.timeExtent.end.getTime();
          // now gray out earthquakes that happened before the time slider's current
          // timeExtent... leaving footprint of earthquakes that already happened
            filter: {
              timeExtent: timeSlider.timeExtent,
              geometry: view.extent
            excludedEffect: "grayscale(20%) opacity(12%)"
          // run statistics on earthquakes fall within the current time extent
          const statQuery = layerView.featureEffect.filter.createQuery();
          layer.queryFeatures(statQuery).then((result) => {
              let htmls = [];
              statsDiv.innerHTML = "";
              if (result.error) {
                return result.error;
              } else {
                if (result.features.length >= 1) {
                  const attributes = result.features[0].attributes;
                  for (name in statsFields) {
                    if (attributes[name] && attributes[name] != null) {
                      const html =
                        "<br/>" +
                        ": <b><span> " +
                        attributes[name].toFixed(2) +
                        "</span></b>";
                  const yearHtml =
                    "<span>" +
                    result.features[0].attributes["tremor_count"] +
                    "</span> earthquakes were recorded between " +
                    " - " +
                    ".<br/>";
                  if (htmls[0] == undefined) {
                  } else {
                      yearHtml + htmls[0] + htmls[1] + htmls[2] + htmls[3];
            .catch((error) => {
              console.log(error);
        const avgDepth = {
          onStatisticField: "depth",
          outStatisticFieldName: "Average_depth",
          statisticType: "avg"
        const magMax = {
          onStatisticField: "mag",
          outStatisticFieldName: "Max_magnitude",
          statisticType: "max"
        const magAvg = {
          onStatisticField: "mag",
          outStatisticFieldName: "Average_magnitude",
          statisticType: "avg"
        const magMin = {
          onStatisticField: "mag",
          outStatisticFieldName: "Min_magnitude",
          statisticType: "min"
        const tremorCount = {
          onStatisticField: "mag",
          outStatisticFieldName: "tremor_count",
          statisticType: "count"
        const statsFields = {
          Max_magnitude: "Max magnitude",
          Average_magnitude: "Average magnitude",
          Min_magnitude: "Min magnitude",
          Average_depth: "Average Depth"
        // add a legend for the earthquakes layer
        const legendExpand = new Expand({
          collapsedIconClass: "esri-icon-collapse",
          expandIconClass: "esri-icon-expand",
          expandTooltip: "图例",
          view: view,
          content: new Legend({
            view: view
          expanded: false
        view.ui.add(legendExpand, "top-left");
        const statsDiv = document.getElementById("statsDiv");
        const infoDiv = document.getElementById("infoDiv");
        const infoDivExpand = new Expand({
          collapsedIconClass: "esri-icon-collapse",
          expandIconClass: "esri-icon-expand",
          expandTooltip: "Expand earthquakes info",
          view: view,
          content: infoDiv,
          expanded: true
        view.ui.add(infoDivExpand, "top-right");
    </script>
  </head>

  <body>
    <div id="viewDiv"></div>
    <div id="timeSlider"></div>
    <div id="infoDiv" class="geoscene-widget">
      <div> <b>USGS Earthquakes</b></div><br/>
      <div id="statsDiv" class="geoscene-widget"></div>
    </div>
  </body>
</html>

最后,应用程序将监视 TimeSlider 的 timeExtent 属性,并更新图层的特征效果以显示微件的当前 timeExtent 内记录的地震。应用特征效果后,应用程序还会对当天的地震进行统计查询。

           
1
2
3
4
5
6
7
8
9
10
11
// watch for TimeSlider timeExtent change
timeSlider.watch("timeExtent", () => {
  // gray out earthquakes that are outside of the current timeExtent
  layerView.featureEffect = {
    filter: {
      timeExtent: timeSlider.timeExtent,
      geometry: view.extent
    },
    excludedEffect: "grayscale(20%) opacity(12%)"
  };
});

工作原理

该应用程序显示 2019 年 5 月 25 日至 2019 年 6 月 11 日期间记录的 USGS 地震。视图的范围设置为加利福尼亚州波莫纳地区,以显示该地区记录的地震。

要开始可视化此区域中记录的地震,您可以执行以下操作之一:

  • 点击 play 按钮可自动更新时间可视化。
  • 点击 nextprevious 按钮一次走过一天。
  • 拖动滑块或段以跳过日期。

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.