-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyling-points.html
More file actions
147 lines (126 loc) · 4.1 KB
/
Copy pathstyling-points.html
File metadata and controls
147 lines (126 loc) · 4.1 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
<!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>Render POIs </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>
#map {
width: 100%;
height: 100%;
}
.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;
}
#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>
<!-- This <div> is the container into which our map control will be loaded. -->
<div id="map">
<!-- 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>
</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>
<script src="../js/styling-points.js"></script>
</body>
</html>