-
Notifications
You must be signed in to change notification settings - Fork 0
/
ship_trajectory_animation in island.html
140 lines (117 loc) · 115 KB
/
ship_trajectory_animation in island.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_38221cacc9f37192fc1f01f14ee922dc {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/iso8601-js-period@0.2.1/iso8601.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/leaflet-timedimension@1.1.1/dist/leaflet.timedimension.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/styles/default.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet-timedimension@1.1.1/dist/leaflet.timedimension.control.css"/>
</head>
<body>
<div class="folium-map" id="map_38221cacc9f37192fc1f01f14ee922dc" ></div>
</body>
<script>
var map_38221cacc9f37192fc1f01f14ee922dc = L.map(
"map_38221cacc9f37192fc1f01f14ee922dc",
{
center: [29.83162723, 122.19487544],
crs: L.CRS.EPSG3857,
zoom: 12,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_c685ece6eb6d3ea1a10b33f8c70b839c = L.tileLayer(
"https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}",
{"attribution": "Esri World Imagery", "detectRetina": false, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
);
tile_layer_c685ece6eb6d3ea1a10b33f8c70b839c.addTo(map_38221cacc9f37192fc1f01f14ee922dc);
L.Control.TimeDimensionCustom = L.Control.TimeDimension.extend({
_getDisplayDateFormat: function(date){
var newdate = new moment(date);
console.log(newdate)
return newdate.format("YYYY/MM/DD HH:mm:ss");
}
});
map_38221cacc9f37192fc1f01f14ee922dc.timeDimension = L.timeDimension(
{
period: "PT1M",
}
);
var timeDimensionControl = new L.Control.TimeDimensionCustom(
{"autoPlay": true, "loopButton": true, "maxSpeed": 1, "minSpeed": 0.1, "playerOptions": {"loop": true, "startOver": true, "transitionTime": 200}, "position": "bottomleft", "speedSlider": true, "timeSliderDragUpdate": true}
);
map_38221cacc9f37192fc1f01f14ee922dc.addControl(this.timeDimensionControl);
var geoJsonLayer = L.geoJson({"type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19225369, 29.83543836]}, "properties": {"times": ["2024-08-16T18:10:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19234347, 29.83508971]}, "properties": {"times": ["2024-08-16T18:11:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19246019, 29.83472904]}, "properties": {"times": ["2024-08-16T18:12:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19261283, 29.83438039]}, "properties": {"times": ["2024-08-16T18:13:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.1927924, 29.83403174]}, "properties": {"times": ["2024-08-16T18:14:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19298993, 29.83368309]}, "properties": {"times": ["2024-08-16T18:15:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19322337, 29.83332241]}, "properties": {"times": ["2024-08-16T18:16:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19347477, 29.83296174]}, "properties": {"times": ["2024-08-16T18:17:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19374413, 29.83258904]}, "properties": {"times": ["2024-08-16T18:18:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19404043, 29.83221634]}, "properties": {"times": ["2024-08-16T18:19:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19435468, 29.83183162]}, "properties": {"times": ["2024-08-16T18:20:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19467791, 29.83142285]}, "properties": {"times": ["2024-08-16T18:21:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19502807, 29.83101408]}, "properties": {"times": ["2024-08-16T18:22:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19537824, 29.83058126]}, "properties": {"times": ["2024-08-16T18:23:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19574636, 29.83013642]}, "properties": {"times": ["2024-08-16T18:24:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19613244, 29.82966753]}, "properties": {"times": ["2024-08-16T18:25:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19651852, 29.82917459]}, "properties": {"times": ["2024-08-16T18:26:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19692256, 29.82866963]}, "properties": {"times": ["2024-08-16T18:27:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19732659, 29.82814063]}, "properties": {"times": ["2024-08-16T18:28:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19773961, 29.82758757]}, "properties": {"times": ["2024-08-16T18:29:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19815262, 29.82702249]}, "properties": {"times": ["2024-08-16T18:30:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19857462, 29.82643337]}, "properties": {"times": ["2024-08-16T18:31:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19900559, 29.82582019]}, "properties": {"times": ["2024-08-16T18:32:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19943656, 29.82518297]}, "properties": {"times": ["2024-08-16T18:33:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19986754, 29.82453372]}, "properties": {"times": ["2024-08-16T18:34:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20030749, 29.82386042]}, "properties": {"times": ["2024-08-16T18:35:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20074744, 29.82316307]}, "properties": {"times": ["2024-08-16T18:36:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20118739, 29.8224537]}, "properties": {"times": ["2024-08-16T18:37:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20163632, 29.8217323]}, "properties": {"times": ["2024-08-16T18:38:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20209423, 29.82098685]}, "properties": {"times": ["2024-08-16T18:39:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20254316, 29.82022937]}, "properties": {"times": ["2024-08-16T18:40:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20301005, 29.81944784]}, "properties": {"times": ["2024-08-16T18:41:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20347693, 29.81866631]}, "properties": {"times": ["2024-08-16T18:42:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2039528, 29.81787275]}, "properties": {"times": ["2024-08-16T18:43:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20442867, 29.81706716]}, "properties": {"times": ["2024-08-16T18:44:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20492249, 29.81624954]}, "properties": {"times": ["2024-08-16T18:45:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20541631, 29.81543193]}, "properties": {"times": ["2024-08-16T18:46:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20591911, 29.81460228]}, "properties": {"times": ["2024-08-16T18:47:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20643987, 29.8137606]}, "properties": {"times": ["2024-08-16T18:48:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20696063, 29.81291892]}, "properties": {"times": ["2024-08-16T18:49:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20749935, 29.81207724]}, "properties": {"times": ["2024-08-16T18:50:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20804704, 29.81123555]}, "properties": {"times": ["2024-08-16T18:51:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20861269, 29.81039386]}, "properties": {"times": ["2024-08-16T18:52:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20917834, 29.80954014]}, "properties": {"times": ["2024-08-16T18:53:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20977093, 29.80869843]}, "properties": {"times": ["2024-08-16T18:54:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21036352, 29.80785673]}, "properties": {"times": ["2024-08-16T18:55:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21098304, 29.80701502]}, "properties": {"times": ["2024-08-16T18:56:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21161154, 29.8061733]}, "properties": {"times": ["2024-08-16T18:57:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.212258, 29.80534361]}, "properties": {"times": ["2024-08-16T18:58:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21291344, 29.80452593]}, "properties": {"times": ["2024-08-16T18:59:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21359581, 29.80370826]}, "properties": {"times": ["2024-08-16T19:00:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21428717, 29.8029026]}, "properties": {"times": ["2024-08-16T19:01:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21500545, 29.80210896]}, "properties": {"times": ["2024-08-16T19:02:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21573272, 29.80132734]}, "properties": {"times": ["2024-08-16T19:03:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21648692, 29.80055775]}, "properties": {"times": ["2024-08-16T19:04:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21725908, 29.79980018]}, "properties": {"times": ["2024-08-16T19:05:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2180492, 29.79905462]}, "properties": {"times": ["2024-08-16T19:06:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21885727, 29.79833312]}, "properties": {"times": ["2024-08-16T19:07:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21969228, 29.79761161]}, "properties": {"times": ["2024-08-16T19:08:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22054525, 29.79692618]}, "properties": {"times": ["2024-08-16T19:09:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22141617, 29.79624074]}, "properties": {"times": ["2024-08-16T19:10:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22230506, 29.79557935]}, "properties": {"times": ["2024-08-16T19:11:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22321189, 29.794942]}, "properties": {"times": ["2024-08-16T19:12:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22413669, 29.79431668]}, "properties": {"times": ["2024-08-16T19:13:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22508842, 29.79370339]}, "properties": {"times": ["2024-08-16T19:14:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22604913, 29.79311414]}, "properties": {"times": ["2024-08-16T19:15:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2270278, 29.79253691]}, "properties": {"times": ["2024-08-16T19:16:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22802442, 29.79197171]}, "properties": {"times": ["2024-08-16T19:17:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.229039, 29.79141853]}, "properties": {"times": ["2024-08-16T19:18:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23007154, 29.79087738]}, "properties": {"times": ["2024-08-16T19:19:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23111306, 29.79033622]}, "properties": {"times": ["2024-08-16T19:20:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23217254, 29.78981912]}, "properties": {"times": ["2024-08-16T19:21:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23324099, 29.78928998]}, "properties": {"times": ["2024-08-16T19:22:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2343274, 29.78877287]}, "properties": {"times": ["2024-08-16T19:23:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23543177, 29.78826779]}, "properties": {"times": ["2024-08-16T19:24:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23654511, 29.78775068]}, "properties": {"times": ["2024-08-16T19:25:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23766744, 29.78724559]}, "properties": {"times": ["2024-08-16T19:26:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23880772, 29.78672847]}, "properties": {"times": ["2024-08-16T19:27:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23995698, 29.78622338]}, "properties": {"times": ["2024-08-16T19:28:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24111522, 29.78570626]}, "properties": {"times": ["2024-08-16T19:29:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24229142, 29.78518914]}, "properties": {"times": ["2024-08-16T19:30:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24347659, 29.78465999]}, "properties": {"times": ["2024-08-16T19:31:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24467075, 29.78413084]}, "properties": {"times": ["2024-08-16T19:32:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24587388, 29.78360169]}, "properties": {"times": ["2024-08-16T19:33:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24708599, 29.78306051]}, "properties": {"times": ["2024-08-16T19:34:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24830708, 29.78251933]}, "properties": {"times": ["2024-08-16T19:35:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24953715, 29.78196612]}, "properties": {"times": ["2024-08-16T19:36:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25077619, 29.78141291]}, "properties": {"times": ["2024-08-16T19:37:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2520332, 29.78084767]}, "properties": {"times": ["2024-08-16T19:38:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2532902, 29.7802704]}, "properties": {"times": ["2024-08-16T19:39:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25455618, 29.77969313]}, "properties": {"times": ["2024-08-16T19:40:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25583114, 29.77911585]}, "properties": {"times": ["2024-08-16T19:41:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2571061, 29.77851453]}, "properties": {"times": ["2024-08-16T19:42:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25839902, 29.7779132]}, "properties": {"times": ["2024-08-16T19:43:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25969194, 29.77731186]}, "properties": {"times": ["2024-08-16T19:44:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26099384, 29.7766985]}, "properties": {"times": ["2024-08-16T19:45:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26230471, 29.77607311]}, "properties": {"times": ["2024-08-16T19:46:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26361559, 29.77544772]}, "properties": {"times": ["2024-08-16T19:47:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26493544, 29.77482232]}, "properties": {"times": ["2024-08-16T19:48:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26626428, 29.7741849]}, "properties": {"times": ["2024-08-16T19:49:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26760209, 29.77353544]}, "properties": {"times": ["2024-08-16T19:50:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2689399, 29.77288599]}, "properties": {"times": ["2024-08-16T19:51:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27028669, 29.77223653]}, "properties": {"times": ["2024-08-16T19:52:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27163348, 29.77157504]}, "properties": {"times": ["2024-08-16T19:53:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27298925, 29.77090152]}, "properties": {"times": ["2024-08-16T19:54:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27435399, 29.77024003]}, "properties": {"times": ["2024-08-16T19:55:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27571874, 29.7695665]}, "properties": {"times": ["2024-08-16T19:56:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27708349, 29.76888095]}, "properties": {"times": ["2024-08-16T19:57:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27845721, 29.76819539]}, "properties": {"times": ["2024-08-16T19:58:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27983992, 29.76750983]}, "properties": {"times": ["2024-08-16T19:59:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28122262, 29.76682427]}, "properties": {"times": ["2024-08-16T20:00:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28260533, 29.76612667]}, "properties": {"times": ["2024-08-16T20:01:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28399701, 29.76542908]}, "properties": {"times": ["2024-08-16T20:02:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28538869, 29.76471945]}, "properties": {"times": ["2024-08-16T20:03:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28678935, 29.76402185]}, "properties": {"times": ["2024-08-16T20:04:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28818104, 29.76331221]}, "properties": {"times": ["2024-08-16T20:05:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28959068, 29.76260258]}, "properties": {"times": ["2024-08-16T20:06:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29099134, 29.76188091]}, "properties": {"times": ["2024-08-16T20:07:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29240098, 29.76117127]}, "properties": {"times": ["2024-08-16T20:08:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29381062, 29.7604496]}, "properties": {"times": ["2024-08-16T20:09:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29522026, 29.75972792]}, "properties": {"times": ["2024-08-16T20:10:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29663888, 29.75900624]}, "properties": {"times": ["2024-08-16T20:11:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29804852, 29.75828456]}, "properties": {"times": ["2024-08-16T20:12:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29946713, 29.75756287]}, "properties": {"times": ["2024-08-16T20:13:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30088575, 29.75682915]}, "properties": {"times": ["2024-08-16T20:14:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30230437, 29.75610746]}, "properties": {"times": ["2024-08-16T20:15:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30373197, 29.75537373]}, "properties": {"times": ["2024-08-16T20:16:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30515059, 29.75465203]}, "properties": {"times": ["2024-08-16T20:17:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30656921, 29.7539183]}, "properties": {"times": ["2024-08-16T20:18:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.3079968, 29.75318457]}, "properties": {"times": ["2024-08-16T20:19:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30941542, 29.75246286]}, "properties": {"times": ["2024-08-16T20:20:19Z"], "style": {"color": "red"}, "icon": "circle", "iconstyle": {"fillColor": "red", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30781723, 29.767582]}, "properties": {"times": ["2024-08-16T18:10:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30737728, 29.76770227]}, "properties": {"times": ["2024-08-16T18:11:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30691937, 29.76782254]}, "properties": {"times": ["2024-08-16T18:12:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30646146, 29.76795484]}, "properties": {"times": ["2024-08-16T18:13:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30599458, 29.76809917]}, "properties": {"times": ["2024-08-16T18:14:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30551871, 29.7682435]}, "properties": {"times": ["2024-08-16T18:15:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30504284, 29.76838783]}, "properties": {"times": ["2024-08-16T18:16:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30454902, 29.76855621]}, "properties": {"times": ["2024-08-16T18:17:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.3040552, 29.76871257]}, "properties": {"times": ["2024-08-16T18:18:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.3035524, 29.76889298]}, "properties": {"times": ["2024-08-16T18:19:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30304062, 29.76906136]}, "properties": {"times": ["2024-08-16T18:20:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30251986, 29.76925379]}, "properties": {"times": ["2024-08-16T18:21:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.3019991, 29.76944623]}, "properties": {"times": ["2024-08-16T18:22:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30146936, 29.76963867]}, "properties": {"times": ["2024-08-16T18:23:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30093065, 29.76984313]}, "properties": {"times": ["2024-08-16T18:24:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.30038295, 29.77005962]}, "properties": {"times": ["2024-08-16T18:25:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29983526, 29.77027611]}, "properties": {"times": ["2024-08-16T18:26:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29927858, 29.77050462]}, "properties": {"times": ["2024-08-16T18:27:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29871293, 29.77073314]}, "properties": {"times": ["2024-08-16T18:28:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29814728, 29.77097368]}, "properties": {"times": ["2024-08-16T18:29:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29757265, 29.77121423]}, "properties": {"times": ["2024-08-16T18:30:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29698904, 29.7714668]}, "properties": {"times": ["2024-08-16T18:31:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29640543, 29.77171936]}, "properties": {"times": ["2024-08-16T18:32:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29581284, 29.77198396]}, "properties": {"times": ["2024-08-16T18:33:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29521128, 29.77226058]}, "properties": {"times": ["2024-08-16T18:34:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29460073, 29.7725372]}, "properties": {"times": ["2024-08-16T18:35:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29399019, 29.77281383]}, "properties": {"times": ["2024-08-16T18:36:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29337964, 29.7731145]}, "properties": {"times": ["2024-08-16T18:37:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29276012, 29.77340315]}, "properties": {"times": ["2024-08-16T18:38:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29213162, 29.77371585]}, "properties": {"times": ["2024-08-16T18:39:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29149414, 29.77402855]}, "properties": {"times": ["2024-08-16T18:40:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29086564, 29.77434125]}, "properties": {"times": ["2024-08-16T18:41:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.29021918, 29.77466597]}, "properties": {"times": ["2024-08-16T18:42:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28957272, 29.7749907]}, "properties": {"times": ["2024-08-16T18:43:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28891728, 29.77533948]}, "properties": {"times": ["2024-08-16T18:44:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28826184, 29.77567623]}, "properties": {"times": ["2024-08-16T18:45:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28759743, 29.776025]}, "properties": {"times": ["2024-08-16T18:46:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28693301, 29.77638581]}, "properties": {"times": ["2024-08-16T18:47:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28625962, 29.77674661]}, "properties": {"times": ["2024-08-16T18:48:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28558622, 29.77711944]}, "properties": {"times": ["2024-08-16T18:49:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28490385, 29.77750429]}, "properties": {"times": ["2024-08-16T18:50:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28422147, 29.77788914]}, "properties": {"times": ["2024-08-16T18:51:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28353012, 29.77827399]}, "properties": {"times": ["2024-08-16T18:52:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28283877, 29.77867087]}, "properties": {"times": ["2024-08-16T18:53:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28214742, 29.77907977]}, "properties": {"times": ["2024-08-16T18:54:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28144709, 29.77948868]}, "properties": {"times": ["2024-08-16T18:55:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28073778, 29.7799096]}, "properties": {"times": ["2024-08-16T18:56:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28002847, 29.78033053]}, "properties": {"times": ["2024-08-16T18:57:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27931916, 29.78076348]}, "properties": {"times": ["2024-08-16T18:58:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27860087, 29.78119643]}, "properties": {"times": ["2024-08-16T18:59:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27788258, 29.78164141]}, "properties": {"times": ["2024-08-16T19:00:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27715532, 29.78209841]}, "properties": {"times": ["2024-08-16T19:01:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27643703, 29.78255541]}, "properties": {"times": ["2024-08-16T19:02:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27570078, 29.78302443]}, "properties": {"times": ["2024-08-16T19:03:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27497352, 29.78349345]}, "properties": {"times": ["2024-08-16T19:04:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27423727, 29.7839745]}, "properties": {"times": ["2024-08-16T19:05:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27349205, 29.78445555]}, "properties": {"times": ["2024-08-16T19:06:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2727558, 29.78494862]}, "properties": {"times": ["2024-08-16T19:07:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27201058, 29.78544169]}, "properties": {"times": ["2024-08-16T19:08:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27125638, 29.78594678]}, "properties": {"times": ["2024-08-16T19:09:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27051115, 29.7864639]}, "properties": {"times": ["2024-08-16T19:10:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26975695, 29.78698102]}, "properties": {"times": ["2024-08-16T19:11:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26900275, 29.78751016]}, "properties": {"times": ["2024-08-16T19:12:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26823957, 29.7880393]}, "properties": {"times": ["2024-08-16T19:13:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26748537, 29.78858046]}, "properties": {"times": ["2024-08-16T19:14:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26672218, 29.78912162]}, "properties": {"times": ["2024-08-16T19:15:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26595002, 29.78967481]}, "properties": {"times": ["2024-08-16T19:16:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26518684, 29.79022799]}, "properties": {"times": ["2024-08-16T19:17:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26441468, 29.7907932]}, "properties": {"times": ["2024-08-16T19:18:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26364252, 29.79137043]}, "properties": {"times": ["2024-08-16T19:19:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26287037, 29.79194766]}, "properties": {"times": ["2024-08-16T19:20:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26209821, 29.79252489]}, "properties": {"times": ["2024-08-16T19:21:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26131707, 29.79312616]}, "properties": {"times": ["2024-08-16T19:22:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26053593, 29.79371541]}, "properties": {"times": ["2024-08-16T19:23:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25976377, 29.79432871]}, "properties": {"times": ["2024-08-16T19:24:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25897365, 29.79492998]}, "properties": {"times": ["2024-08-16T19:25:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25819252, 29.7955553]}, "properties": {"times": ["2024-08-16T19:26:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25741138, 29.79618061]}, "properties": {"times": ["2024-08-16T19:27:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25662126, 29.79680592]}, "properties": {"times": ["2024-08-16T19:28:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25584012, 29.79744326]}, "properties": {"times": ["2024-08-16T19:29:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25505001, 29.79809262]}, "properties": {"times": ["2024-08-16T19:30:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25425989, 29.79874197]}, "properties": {"times": ["2024-08-16T19:31:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25346977, 29.79940335]}, "properties": {"times": ["2024-08-16T19:32:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25267966, 29.80006473]}, "properties": {"times": ["2024-08-16T19:33:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25188954, 29.80073812]}, "properties": {"times": ["2024-08-16T19:34:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25109942, 29.80141152]}, "properties": {"times": ["2024-08-16T19:35:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25030931, 29.80209694]}, "properties": {"times": ["2024-08-16T19:36:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24951021, 29.80278235]}, "properties": {"times": ["2024-08-16T19:37:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24872009, 29.80347979]}, "properties": {"times": ["2024-08-16T19:38:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.247921, 29.80418924]}, "properties": {"times": ["2024-08-16T19:39:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24713088, 29.8048987]}, "properties": {"times": ["2024-08-16T19:40:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24633179, 29.80560815]}, "properties": {"times": ["2024-08-16T19:41:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24554167, 29.80632962]}, "properties": {"times": ["2024-08-16T19:42:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24474257, 29.80706312]}, "properties": {"times": ["2024-08-16T19:43:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24395246, 29.80779661]}, "properties": {"times": ["2024-08-16T19:44:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24315336, 29.80853009]}, "properties": {"times": ["2024-08-16T19:45:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24236325, 29.80928763]}, "properties": {"times": ["2024-08-16T19:46:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24156415, 29.81003313]}, "properties": {"times": ["2024-08-16T19:47:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24077403, 29.81079066]}, "properties": {"times": ["2024-08-16T19:48:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23997494, 29.81154818]}, "properties": {"times": ["2024-08-16T19:49:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23917584, 29.81231772]}, "properties": {"times": ["2024-08-16T19:50:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23837675, 29.81308726]}, "properties": {"times": ["2024-08-16T19:51:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23758663, 29.81385679]}, "properties": {"times": ["2024-08-16T19:52:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23678754, 29.81463835]}, "properties": {"times": ["2024-08-16T19:53:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23598844, 29.8154199]}, "properties": {"times": ["2024-08-16T19:54:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23518934, 29.81620145]}, "properties": {"times": ["2024-08-16T19:55:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23439025, 29.81699502]}, "properties": {"times": ["2024-08-16T19:56:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23359115, 29.81778858]}, "properties": {"times": ["2024-08-16T19:57:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23279206, 29.81858214]}, "properties": {"times": ["2024-08-16T19:58:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23199296, 29.81938772]}, "properties": {"times": ["2024-08-16T19:59:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23119387, 29.8201933]}, "properties": {"times": ["2024-08-16T20:00:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23039477, 29.82099887]}, "properties": {"times": ["2024-08-16T20:01:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22959568, 29.82180444]}, "properties": {"times": ["2024-08-16T20:02:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2287876, 29.82261]}, "properties": {"times": ["2024-08-16T20:03:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22798851, 29.82342758]}, "properties": {"times": ["2024-08-16T20:04:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22718941, 29.82424516]}, "properties": {"times": ["2024-08-16T20:05:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22639032, 29.82505071]}, "properties": {"times": ["2024-08-16T20:06:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22558224, 29.82588031]}, "properties": {"times": ["2024-08-16T20:07:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22478315, 29.82669787]}, "properties": {"times": ["2024-08-16T20:08:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22398405, 29.82751544]}, "properties": {"times": ["2024-08-16T20:09:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22317598, 29.82834502]}, "properties": {"times": ["2024-08-16T20:10:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22237688, 29.82916257]}, "properties": {"times": ["2024-08-16T20:11:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22156881, 29.82999214]}, "properties": {"times": ["2024-08-16T20:12:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22076972, 29.83082171]}, "properties": {"times": ["2024-08-16T20:13:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21996164, 29.83165128]}, "properties": {"times": ["2024-08-16T20:14:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21916255, 29.83248084]}, "properties": {"times": ["2024-08-16T20:15:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21835447, 29.83331039]}, "properties": {"times": ["2024-08-16T20:16:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21755538, 29.83413994]}, "properties": {"times": ["2024-08-16T20:17:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2167473, 29.83496949]}, "properties": {"times": ["2024-08-16T20:18:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21594821, 29.83579903]}, "properties": {"times": ["2024-08-16T20:19:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21514911, 29.83662857]}, "properties": {"times": ["2024-08-16T20:20:19Z"], "style": {"color": "blue"}, "icon": "circle", "iconstyle": {"fillColor": "blue", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28115079, 29.77591676]}, "properties": {"times": ["2024-08-16T18:10:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28088143, 29.77603703]}, "properties": {"times": ["2024-08-16T18:11:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28059412, 29.7761573]}, "properties": {"times": ["2024-08-16T18:12:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.28028885, 29.77627757]}, "properties": {"times": ["2024-08-16T18:13:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27996562, 29.77640986]}, "properties": {"times": ["2024-08-16T18:14:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27961545, 29.77653013]}, "properties": {"times": ["2024-08-16T18:15:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27925631, 29.77666242]}, "properties": {"times": ["2024-08-16T18:16:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27887023, 29.77679472]}, "properties": {"times": ["2024-08-16T18:17:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27847517, 29.77692701]}, "properties": {"times": ["2024-08-16T18:18:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27805318, 29.7770593]}, "properties": {"times": ["2024-08-16T18:19:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27761322, 29.77720362]}, "properties": {"times": ["2024-08-16T18:20:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27716429, 29.77733592]}, "properties": {"times": ["2024-08-16T18:21:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27669741, 29.77748024]}, "properties": {"times": ["2024-08-16T18:22:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27621256, 29.77762456]}, "properties": {"times": ["2024-08-16T18:23:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27570976, 29.77776888]}, "properties": {"times": ["2024-08-16T18:24:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.275189, 29.7779132]}, "properties": {"times": ["2024-08-16T18:25:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27465927, 29.77805751]}, "properties": {"times": ["2024-08-16T18:26:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27411157, 29.77821386]}, "properties": {"times": ["2024-08-16T18:27:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27354592, 29.77835818]}, "properties": {"times": ["2024-08-16T18:28:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27297129, 29.77851453]}, "properties": {"times": ["2024-08-16T18:29:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2723787, 29.77867087]}, "properties": {"times": ["2024-08-16T18:30:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27176816, 29.77882722]}, "properties": {"times": ["2024-08-16T18:31:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27114863, 29.77898356]}, "properties": {"times": ["2024-08-16T18:32:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.27052013, 29.77913991]}, "properties": {"times": ["2024-08-16T18:33:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26987367, 29.77929625]}, "properties": {"times": ["2024-08-16T18:34:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26921823, 29.77946462]}, "properties": {"times": ["2024-08-16T18:35:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26855382, 29.77962097]}, "properties": {"times": ["2024-08-16T18:36:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26787144, 29.77978934]}, "properties": {"times": ["2024-08-16T18:37:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26718009, 29.77995771]}, "properties": {"times": ["2024-08-16T18:38:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26647078, 29.78012608]}, "properties": {"times": ["2024-08-16T18:39:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26576147, 29.78029445]}, "properties": {"times": ["2024-08-16T18:40:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26503421, 29.78046282]}, "properties": {"times": ["2024-08-16T18:41:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26429796, 29.78064322]}, "properties": {"times": ["2024-08-16T18:42:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26355274, 29.78081159]}, "properties": {"times": ["2024-08-16T18:43:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26279854, 29.78099198]}, "properties": {"times": ["2024-08-16T18:44:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26204433, 29.78116035]}, "properties": {"times": ["2024-08-16T18:45:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26127217, 29.78134075]}, "properties": {"times": ["2024-08-16T18:46:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.26049104, 29.78152114]}, "properties": {"times": ["2024-08-16T18:47:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25970092, 29.78170154]}, "properties": {"times": ["2024-08-16T18:48:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25890182, 29.78188193]}, "properties": {"times": ["2024-08-16T18:49:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25810273, 29.78206233]}, "properties": {"times": ["2024-08-16T18:50:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25729466, 29.78224272]}, "properties": {"times": ["2024-08-16T18:51:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2564776, 29.78242312]}, "properties": {"times": ["2024-08-16T18:52:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25565157, 29.78261554]}, "properties": {"times": ["2024-08-16T18:53:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25482554, 29.78279593]}, "properties": {"times": ["2024-08-16T18:54:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25399053, 29.78298835]}, "properties": {"times": ["2024-08-16T18:55:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25314654, 29.78318077]}, "properties": {"times": ["2024-08-16T18:56:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25230255, 29.78336117]}, "properties": {"times": ["2024-08-16T18:57:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25144959, 29.78355358]}, "properties": {"times": ["2024-08-16T18:58:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.25059662, 29.783746]}, "properties": {"times": ["2024-08-16T18:59:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24973468, 29.78393842]}, "properties": {"times": ["2024-08-16T19:00:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24887273, 29.78413084]}, "properties": {"times": ["2024-08-16T19:01:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24801078, 29.78432326]}, "properties": {"times": ["2024-08-16T19:02:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24713986, 29.78451568]}, "properties": {"times": ["2024-08-16T19:03:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24626894, 29.78472012]}, "properties": {"times": ["2024-08-16T19:04:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24538903, 29.78491254]}, "properties": {"times": ["2024-08-16T19:05:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24451811, 29.78510496]}, "properties": {"times": ["2024-08-16T19:06:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.24363821, 29.7853094]}, "properties": {"times": ["2024-08-16T19:07:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2427583, 29.78550182]}, "properties": {"times": ["2024-08-16T19:08:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2418784, 29.78570626]}, "properties": {"times": ["2024-08-16T19:09:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2409985, 29.78589868]}, "properties": {"times": ["2024-08-16T19:10:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2401186, 29.78610312]}, "properties": {"times": ["2024-08-16T19:11:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23923869, 29.78630756]}, "properties": {"times": ["2024-08-16T19:12:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23834981, 29.786512]}, "properties": {"times": ["2024-08-16T19:13:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23747889, 29.78671645]}, "properties": {"times": ["2024-08-16T19:14:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23659898, 29.78693291]}, "properties": {"times": ["2024-08-16T19:15:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23571908, 29.78716141]}, "properties": {"times": ["2024-08-16T19:16:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23484816, 29.7873899]}, "properties": {"times": ["2024-08-16T19:17:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23397723, 29.78763042]}, "properties": {"times": ["2024-08-16T19:18:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23311529, 29.78788296]}, "properties": {"times": ["2024-08-16T19:19:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23225334, 29.78814753]}, "properties": {"times": ["2024-08-16T19:20:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23140038, 29.78843615]}, "properties": {"times": ["2024-08-16T19:21:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.23054741, 29.78872477]}, "properties": {"times": ["2024-08-16T19:22:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22970342, 29.78903744]}, "properties": {"times": ["2024-08-16T19:23:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22885943, 29.78937416]}, "properties": {"times": ["2024-08-16T19:24:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2280334, 29.78972291]}, "properties": {"times": ["2024-08-16T19:25:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22720737, 29.79009571]}, "properties": {"times": ["2024-08-16T19:26:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22639032, 29.79049256]}, "properties": {"times": ["2024-08-16T19:27:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22558224, 29.79090143]}, "properties": {"times": ["2024-08-16T19:28:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22477417, 29.79134638]}, "properties": {"times": ["2024-08-16T19:29:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22398405, 29.79181538]}, "properties": {"times": ["2024-08-16T19:30:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22320292, 29.7922964]}, "properties": {"times": ["2024-08-16T19:31:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22243076, 29.7928135]}, "properties": {"times": ["2024-08-16T19:32:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22166758, 29.79336667]}, "properties": {"times": ["2024-08-16T19:33:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22091337, 29.79393187]}, "properties": {"times": ["2024-08-16T19:34:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.22016815, 29.79453314]}, "properties": {"times": ["2024-08-16T19:35:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21944088, 29.79515846]}, "properties": {"times": ["2024-08-16T19:36:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21871362, 29.79581985]}, "properties": {"times": ["2024-08-16T19:37:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21800431, 29.79650529]}, "properties": {"times": ["2024-08-16T19:38:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21730398, 29.79721478]}, "properties": {"times": ["2024-08-16T19:39:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2166216, 29.79796034]}, "properties": {"times": ["2024-08-16T19:40:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21593923, 29.79872995]}, "properties": {"times": ["2024-08-16T19:41:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21526583, 29.79951158]}, "properties": {"times": ["2024-08-16T19:42:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2146104, 29.80032928]}, "properties": {"times": ["2024-08-16T19:43:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21395496, 29.80117102]}, "properties": {"times": ["2024-08-16T19:44:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2133085, 29.80202479]}, "properties": {"times": ["2024-08-16T19:45:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21267102, 29.80291462]}, "properties": {"times": ["2024-08-16T19:46:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21204252, 29.80381648]}, "properties": {"times": ["2024-08-16T19:47:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21142299, 29.80474238]}, "properties": {"times": ["2024-08-16T19:48:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21080347, 29.8056803]}, "properties": {"times": ["2024-08-16T19:49:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.21019293, 29.80664226]}, "properties": {"times": ["2024-08-16T19:50:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20959136, 29.80762826]}, "properties": {"times": ["2024-08-16T19:51:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20898979, 29.80861426]}, "properties": {"times": ["2024-08-16T19:52:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20839721, 29.80963633]}, "properties": {"times": ["2024-08-16T19:53:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20780462, 29.81065839]}, "properties": {"times": ["2024-08-16T19:54:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20722101, 29.81170449]}, "properties": {"times": ["2024-08-16T19:55:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.2066374, 29.81276261]}, "properties": {"times": ["2024-08-16T19:56:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20605379, 29.81383275]}, "properties": {"times": ["2024-08-16T19:57:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20547916, 29.81490288]}, "properties": {"times": ["2024-08-16T19:58:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20489555, 29.81599705]}, "properties": {"times": ["2024-08-16T19:59:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20432092, 29.81710323]}, "properties": {"times": ["2024-08-16T20:00:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20375527, 29.81820941]}, "properties": {"times": ["2024-08-16T20:01:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20318064, 29.8193276]}, "properties": {"times": ["2024-08-16T20:02:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20260601, 29.82045781]}, "properties": {"times": ["2024-08-16T20:03:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20203138, 29.82160004]}, "properties": {"times": ["2024-08-16T20:04:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20145675, 29.82274226]}, "properties": {"times": ["2024-08-16T20:05:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20088212, 29.82388447]}, "properties": {"times": ["2024-08-16T20:06:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.20030749, 29.82503869]}, "properties": {"times": ["2024-08-16T20:07:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19973286, 29.82619291]}, "properties": {"times": ["2024-08-16T20:08:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19914925, 29.82734711]}, "properties": {"times": ["2024-08-16T20:09:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19857462, 29.82851334]}, "properties": {"times": ["2024-08-16T20:10:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19799101, 29.82967955]}, "properties": {"times": ["2024-08-16T20:11:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.1974074, 29.83084576]}, "properties": {"times": ["2024-08-16T20:12:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19682379, 29.83201195]}, "properties": {"times": ["2024-08-16T20:13:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.1962312, 29.83319017]}, "properties": {"times": ["2024-08-16T20:14:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.1956476, 29.83435635]}, "properties": {"times": ["2024-08-16T20:15:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19505501, 29.83553454]}, "properties": {"times": ["2024-08-16T20:16:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.1944714, 29.83671273]}, "properties": {"times": ["2024-08-16T20:17:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19387881, 29.83789091]}, "properties": {"times": ["2024-08-16T20:18:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19328622, 29.83905705]}, "properties": {"times": ["2024-08-16T20:19:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [122.19270262, 29.84023521]}, "properties": {"times": ["2024-08-16T20:20:19Z"], "style": {"color": "green"}, "icon": "circle", "iconstyle": {"fillColor": "green", "fillOpacity": 0.6, "stroke": "true", "radius": 1.5}}}]}, {
pointToLayer: function (feature, latLng) {
if (feature.properties.icon == 'marker') {
if(feature.properties.iconstyle){
return new L.Marker(latLng, {
icon: L.icon(feature.properties.iconstyle)});
}
//else
return new L.Marker(latLng);
}
if (feature.properties.icon == 'circle') {
if (feature.properties.iconstyle) {
return new L.circleMarker(latLng, feature.properties.iconstyle)
};
//else
return new L.circleMarker(latLng);
}
//else
return new L.Marker(latLng);
},
style: function (feature) {
return feature.properties.style;
},
onEachFeature: function(feature, layer) {
if (feature.properties.popup) {
layer.bindPopup(feature.properties.popup);
}
if (feature.properties.tooltip) {
layer.bindTooltip(feature.properties.tooltip);
}
}
})
var timestamped_geo_json_5b355b06cd018733f888f6a827dc6748 = L.timeDimension.layer.geoJson(
geoJsonLayer,
{
updateTimeDimension: true,
addlastPoint: true,
duration: undefined,
}
).addTo(map_38221cacc9f37192fc1f01f14ee922dc);
</script>
</html>