-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (32 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="js/jquery-easyui-1.10.15/themes/ui-cupertino/easyui.css">
<link rel="stylesheet" type="text/css" href="js/jquery-easyui-1.10.15/themes/icon.css">
<link rel="stylesheet" type="text/css" href="js/jquery-easyui-1.10.15/themes/color.css">
<link rel="stylesheet" type="text/css" href="css/layout.css">
<link rel="stylesheet" type="text/css" href="css/gps.css?v=1.0">
<script src="https://maps.googleapis.com/maps/api/js"></script>
<script type="text/javascript" src="/js/jquery-easyui-1.10.15/jquery.min.js"></script>
<script type="text/javascript" src="/js/jquery-easyui-1.10.15/jquery.easyui.min.js"></script>
<script type="text/javascript" src="/js/pm.js?v=1.1"></script>
</head>
<body>
<div id="page_map">
</div>
<div id="page_report">
</div>
<script>
$pm.ready(function(){
console.log("$pm.ready()")
window.map=new Map();
map.init();
})
$pm.loadJS("js/map.js?v=1.6")
</script>
</body>
</html>