This repository was archived by the owner on Feb 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (56 loc) · 1.38 KB
/
Copy pathindex.html
File metadata and controls
68 lines (56 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en" ng-app="demoModule">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="./node_modules/angular/angular.min.js"></script>
<script src="./dist/angular-heremaps.min.js"></script>
<script src="./example/app.module.js"></script>
<style>
* {
padding: 0;
margin: 0;
}
html,
body {
height: 100%;
width: 100%;
}
.demo {
height: 480px;
}
.dom-marker {
cursor: pointer;
border-radius: 6px;
padding: 4px;
color: #fff;
background-color: #1f262a;
}
.dom-marker h3,
.dom-marker h5 {
margin: 0;
padding: 0;
text-align: center;
}
.github-link {
width: 100%;
display: block;
font-size: 17px;
padding: 8px 0 8px 4px;
color: white;
}
</style>
</head>
<body>
<section class="demo" ng-controller="DemoCtrl">
<div class="map"
heremaps
controls="right-bottom"
options="mapOptions"
events="listeners"
places="markers"
map-ready="onMapReady">
</div>
</section>
</body>
</html>