-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathearth.html
41 lines (39 loc) · 1.6 KB
/
earth.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
41
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>test</title>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/angularjs/angular.js"></script>
<script src="bower_components/d3/d3.min.js"></script>
<script src="bower_components/underscore/underscore-min.js"></script>
<script src="bower_components/angular-animate/angular-animate.js"></script>
<script src="bower_components/angular-bootstrap/ui-bootstrap.js"></script>
<script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.js"></script>
<script src="bower_components/topojson/topojson.js"></script>
<script src="bower_components/d3-geo-projection/d3.geo.projection.js"></script>
<script src="js/main.js"></script>
<script src="js/earth/earth.js"></script>
<script src="js/isGaugeChart.js"></script>
<script src="js/earth/earthCtrl.js"></script>
<script src="js/earth/stateCapitols.js"></script>
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css?v=1.0">
<link rel="stylesheet" href="js/earth/earth.css">
</head>
<body>
<div ng-app="myApp">
<div class="container-fluid" ng-controller="earthCtrl">
<div class="row">
<div class="col-lg-12">
<div class="box">
<earth value="earthValue"></earth>
</div>
<div class="box">
</div>
</div>
</div>
</div>
</div>
</body>
</html>