-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcloud-time-zone.html
More file actions
230 lines (196 loc) · 6.36 KB
/
Copy pathcloud-time-zone.html
File metadata and controls
230 lines (196 loc) · 6.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title> Get Time Zone for a Point </title>
<!-- Include the style sheet for the ThinkGeo VectorMap.js library from our CDN. -->
<link rel="stylesheet" href="https://cdn.thinkgeo.com/vectormap-js/3.0.0/vectormap.css">
<!-- Define some custom styles for the UI of our sample page. -->
<style rel="stylesheet" type="text/css">
body {
position: relative;
}
#map {
width: 100%;
height: 100%;
cursor: pointer;
}
.ol-control button {
height: 1.2em !important;
width: 1.2em !important;
border: solid 1px #ccc;
font-size: 1.5em !important;
background-color: #fff !important;
color: #2d3c4d;
cursor: pointer;
border-radius: 2px;
}
.ol-control button:focus {
outline: unset;
}
.ol-full-screen {
right: unset;
left: 0.5em;
top: 5.5em;
}
#popup {
padding: 5px 10px;
z-index: 5;
background-color: #fff;
border: 1px solid rgb(185, 185, 185);
text-align: left;
font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif;
line-height: 30px;
border-radius: 2px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
#popup-content:after,
#popup-content:before {
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
}
#popup-content:before {
top: -19px;
left: 3px;
border-width: 10px;
border-bottom-color: #b9b9b9;
}
#popup-content:after {
top: -16px;
left: 4px;
border-width: 9px;
border-bottom-color: #fff;
}
#popup p {
font-size: 14px;
line-height: 20px;
border-top: 1px solid #eee;
padding-top: 7px;
padding-bottom: 7px;
margin-top: 0;
margin-bottom: 0;
}
#popup p:nth-child(1) {
border-top: 0;
}
#popup p label {
display: inline-block;
min-width: 140px;
font-weight: bold;
}
.popup-closer {
text-decoration: none;
position: absolute;
top: 1px;
right: 8px;
cursor: pointer;
}
.popup-closer::after {
content: "✖";
}
#error-message {
position: absolute;
top: -150px;
left: 50%;
width: auto;
min-width: 300px;
margin-left: auto;
text-align: center;
transform: translate(-50%, 0);
transition: top 0.6s;
}
#error-message.show {
top: 15px;
transition: top 0.6s;
}
#error-message p {
line-height: 40px;
padding-left: 10px;
padding-right: 10px;
border-radius: 3px;
border-color: #f5c6cb;
background-color: #f8d7da;
color: #721c24;
}
#error-modal {
position: fixed;
top: 0;
height: 100%;
width: 100%;
z-index: 99;
background-color: #0000006e;
}
.modal-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 600px;
height: auto;
text-align: right;
padding: 10px;
border-radius: 5px;
font-size: 1.1rem;
line-height: 1.5;
background-color: #f0f0f0;
border: 1px solid #b8b8b8;
}
.modal-content p {
text-align: left;
}
.modal-content button {
color: #fff;
background-color: #3d3d3e;
border-color: #3d3d3e;
border-radius: 4px;
padding: 0 7px;
height: 30px;
width: 60px;
cursor: pointer;
margin-right: 20px;
}
.hide {
display: none;
}
@media (max-width: 767px) {
.modal-content {
width: 80vw;
}
}
</style>
</head>
<body>
<div id="map">
<!-- Set up a popup which the point info will be loaded. -->
<div id="popup">
<div id="popup-content"></div>
<div class="popup-closer"></div>
</div>
</div>
<!-- Set up error message tip. -->
<div id="error-message">
<p>No time zone data is available for that location, please try clicking elsewhere!</p>
</div>
<!-- Set up error message tip. -->
<div id="error-modal" class="hide">
<div class="modal-content">
<p>We're having trouble communicating with the ThinkGeo Cloud. Please check the API key being used in this sample's JavaScript source code, and ensure it has access to the ThinkGeo Cloud services you are requesting. You can create and manage your API keys at <a href="https://cloud.thinkgeo.com" target="_blank" rel="noopener">https://cloud.thinkgeo.com</a>.</p>
<button>OK</button>
</div>
</div>
<!-- Include the latest version of ThinkGeo's VectorMap.js library from our CDN. -->
<script src="https://cdn.thinkgeo.com/vectormap-js/3.0.0/vectormap.js"></script>
<!-- Include ThinkGeo's Map Icon Font loader for POI icons on the background layer. -->
<script src="https://cdn.thinkgeo.com/vectormap-icons/2.0.0/webfontloader.js"></script>
<!-- Include the latest version of ThinkGeo's Cloud Client library from our CDN. -->
<script src="https://cdn.thinkgeo.com/cloudclient-js/1.0.4/thinkgeocloudclient.js"></script>
<!-- Include a library to display dates and times in JavaScript.-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script src="../js/cloud-time-zone.js"></script>
</body>
</html>