-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (35 loc) · 1.11 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="http://localhost/arcgis_js_api/library/3.14/3.14/esri/css/esri.css">
<script>
var dojoConfig = {
// baseUrl: "js/",
parseOnload:true,
async:true
};
</script>
<!-- <script src="/js/Shape1.js" /> -->
<script type="text/javascript" data-dojo-config="async: true" src="http://localhost/arcgis_js_api/library/3.14/3.14/init.js"></script>
<title></title>
<script>
var map;
require(["esri/map", "dojo/domReady!"], function(Map ) {
// var shp=new Shape1;
// Shape1.setColor(1111);
map = new Map("mapDiv", {
center: [-56.049, 38.485],
zoom: 3,
basemap: "streets"
});
});
parser.Parse();
</script>
</head>
<body class="claro">
<div id="mapDiv"></div>
<script>
</script>
</body>
</html>