-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
45 lines (39 loc) · 1.1 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>轨迹动画</title>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<style>
html,
body {
width: 100%;
height: 100%;
padding: 0px;
margin: 0px;
}
.container {
width: 90%;
margin: auto;
padding-left: 30px;
}
a {
line-height: 30px;
text-decoration: none;
}
a:hover {
color: grey;
}
</style>
</head>
<body>
<div class="container">
<h2>line-animate-demo</h2>
<a href="openlayer/openlayer_route.html" target="_blank">openlayer_route_version1.0</a><br>
<a href="openlayer/openlayer_routeV2.html" target="_blank">openlayer_route_version2.0</a><br>
<a href="mapbox/mapbox_route.html" target="_blank">mapbox_route</a><br>
<a href="maptalks/maptalks_route.html" target="_blank">maptalks_route</a><br>
</div>
</body>
</html>