-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (23 loc) · 1.01 KB
/
index.html
File metadata and controls
25 lines (23 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<title></title>
<link rel="stylesheet" type="text/css" href="css/base.css"/>
</head>
<body>
<div id="container" style="height: 80%;"></div>
<button class="point" onclick="draw('Point')">绘制点</button>
<button class="line" onclick="draw('Polyline')">绘制线</button>
<button class="polygon" onclick="draw('Polygon')">绘制面</button>
<button class="circle" onclick="draw('Circle')">绘制圆</button>
</body>
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=k3hGTr3v8pGucDGppYdObbLkwU7lGLSO"></script>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script src="js/bd_gis.js" type="text/javascript" charset="utf-8"></script>
<!-- <script src="js/base.js" type="text/javascript" charset="utf-8"></script>
--> <script type="text/javascript">
//draw("Point");
</script>
</html>