forked from SuperMap/iClient-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexamples.html
More file actions
30 lines (30 loc) · 1.33 KB
/
examples.html
File metadata and controls
30 lines (30 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>iClient for Leaflet 示范程序</title>
<link rel="shortcut icon" type="image/x-icon" href="../../web/img/favicon.ico"/>
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<script type="text/javascript" include="jquery,bootstrap,admin-lte,jquery.scrollto" src="../js/include-web.js"></script>
<link rel="stylesheet" href="../css/common.css">
<link rel="stylesheet" href="../css/header.css">
<link rel="stylesheet" href="../css/sideBar.css">
<link rel="stylesheet" href="../css/examples.css">
</head>
<body class="hold-transition skin-blue sidebar-mini" data-spy="scroll" data-target="#scrollSpy">
<!-- ./wrapper -->
<div class="wrapper"></div>
<!-- ./wrapper -->
<script>
$('.wrapper').load('../section/example.html', function () {
var header = $('.nav-header');
header.load('../section/header.html');
var body = $('body');
body.append("<script type='text/javascript' src='./config.js'><\/script>");
body.append("<script type='text/javascript' src='../js/sidebar.js'><\/script>");
body.append("<script type='text/javascript' src='../js/example.js'><\/script>");
});
</script>
</body>
</html>