-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcloud-vector-maps.html
More file actions
156 lines (133 loc) · 4.4 KB
/
Copy pathcloud-vector-maps.html
File metadata and controls
156 lines (133 loc) · 4.4 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
<!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> Vector Tiles </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">
#map {
position: relative;
width: 100%;
height: 100%;
}
#wrap {
position: absolute;
top: 1em;
right: 0.5em;
z-index: 1000;
}
.thumb {
width: 70px;
height: 70px;
z-index: 1000;
border: 2px solid transparent;
margin-bottom: 5px;
cursor: pointer;
}
.thumb-light {
background-image: url(../image/vector-map-light.jpg);
background-size: contain;
border: 2px solid #ffffff
}
.thumb-dark {
background-image: url(../image/vector-map-dark.jpg);
background-size: contain
}
.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-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 contorl panels for the different styles of maps.-->
<div id="wrap">
<div class="thumb thumb-light" value="light">
</div>
<div class="thumb thumb-dark" value="dark">
</div>
</div>
<!-- Set up error message panel. -->
<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/cloud-vector-maps.js"></script>
</body>
</html>