-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
34 lines (32 loc) · 1018 Bytes
/
popup.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
<!doctype html>
<html>
<head>
<title>百度地图实时路况</title>
<meta charset="utf8">
<style>
html {
height:100%
}
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 100%;
height:100%;
margin:0px;
padding:0px
}
#container {
height: 600px;
width: 500px;
}
</style>
<link rel="stylesheet" href="TrafficControl.css">
<script src="https://api.map.baidu.com/api?v=2.0&ak=WuA30p8iacM5DtaRMTGeoI3dyYUkodel&s=1"></script>
<script src="https://webapi.amap.com/maps?v=1.3&key=78abef003e67ec03ec9fd0a9556de819"></script>
</head>
<body>
<div id="container"></div>
<script src="jquery.js"></script>
<script src="TrafficControl.js"></script>
<script src="popup.js"></script>
</body>
</html>