-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 949 Bytes
/
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
<!DOCTYPE html>
<html ng-app="mainApp">
<head>
<meta charset="utf-8" />
<title>YuanMap</title>
<meta name="viewport" content="initial-scale=1.1, user-scalable=no" />
<link href="css/bootstrap.css" rel="stylesheet" />
<link href="css/bootstrap-theme.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
</head>
<body ng-controller="initCtrl">
<div id="mapContainer">
<div id="searchBar" ng-show="mapObj" ng-controller="searchCtrl">
<form name="searchForm" ng-submit="submitForm()">
<input type="text" ng-model="data.keyword" name="keyword" placeholder="keyword" required /><input type="submit" />
</form>
</div>
</div>
<script src="//webapi.amap.com/maps?v=1.2&key=97b27bfcd3d40ec66b150c4acb673034"></script>
<script src="js/angular.js"></script>
<script src="js/services.js"></script>
<script src="js/index.js"></script>
</body>
</html>