This repository has been archived by the owner on Jul 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfullscreen.html
68 lines (57 loc) · 1.92 KB
/
fullscreen.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title></title>
<meta http-equiv="Content-Security-Policy"
content="
default-src
'self'
http://js.arcgis.com
http://static.arcgis.com
http://services.arcgisonline.com
http://server.arcgisonline.com;
font-src
'self'
http://js.arcgis.com
data:;
style-src 'self' http://js.arcgis.com 'unsafe-inline';
script-src 'self' http://js.arcgis.com http://unpkg.com 'unsafe-eval'">
<link href="lib/ionic/css/ionic.css" rel="stylesheet">
<!-- load Esri CSS -->
<link rel="stylesheet" href="http://js.arcgis.com/3.16/esri/css/esri.css">
<!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
<link href="css/ionic.app.css" rel="stylesheet">
-->
<style>
html, body, #esriMap {
padding: 0;
margin: 0;
height: 100%;
}
</style>
<!-- ionic/angularjs js -->
<script src="lib/ionic/js/ionic.bundle.js"></script>
<!-- cordova script (this will be a 404 during development) -->
<script src="cordova.js"></script>
<!-- load Esri JSAPI -->
<script src="http://js.arcgis.com/3.16/"></script>
<!-- load angular-esri-map -->
<script src="http://unpkg.com/angular-esri-map@1"></script>
<!-- your app's js -->
<script src="js/fullscreen/app.js"></script>
<script src="js/fullscreen/controllers.js"></script>
<script src="js/fullscreen/services.js"></script>
</head>
<body ng-app="starter">
<esri-map
id="esriMap"
map-options="{
basemap: 'topo',
center: [90.45, 27.5],
zoom: 7
}">
</esri-map>
</body>
</html>