-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (54 loc) · 1.96 KB
/
Copy pathindex.html
File metadata and controls
67 lines (54 loc) · 1.96 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Angular</title>
<base href="https://samples.thinkgeo.com/cloud/angular/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Include the style sheet for the ThinkGeo VectorMap.js library from our CDN. -->
<link rel="stylesheet" href="https://cdn.thinkgeo.com/vectormap-js/2.0.2/vectormap.css">
<!-- Define some custom styles for the UI of our sample page. -->
<style>
.ol-control:hover {
background-color: unset;
}
.ol-control:focus {
outline: unset !important;
}
.ol-full-screen {
right: unset;
left: 0.5em;
top: 5.5em;
background-color: unset
}
.ol-full-screen button {
height: 1.2em !important;
width: 1.2em !important;
font-size: 1.5em !important;
cursor: pointer;
margin: 0px !important;
background-color: #fff !important;
color: #2d3c4d !important;
border: solid 1px #ccc !important;
box-shadow: 0 1px 2px 0 rgba(34, 36, 38, .15);
border-radius: 0 0 2px 2px;
}
.ol-full-screen button:hover {
background-color: #eee !important;
}
</style>
</head>
<body>
<!-- This <app-root> is the container into which our map control will be loaded. -->
<app-root></app-root>
<!-- Include the latest version of ThinkGeo's VectorMap.js library from our CDN. -->
<script src="https://cdn.thinkgeo.com/vectormap-js/2.0.2/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 type="text/javascript" src="main.js"></script>
</body>
<script type="text/javascript" src="runtime.js"></script>
<script type="text/javascript" src="polyfills.js"></script>
<script type="text/javascript" src="styles.js"></script>
<script type="text/javascript" src="vendor.js"></script>
</html>