summaryrefslogtreecommitdiffstats
path: root/apps/samples/map/map.html
blob: 01dc92b14ecf4f7a78fd987fd0cc84c2e1c11a64 (plain)
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
    <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.8.3/dijit/themes/tundra/tundra.css">
    <!-- link rel="stylesheet" href="map.css" -->
		<script type="text/javascript" src="http://openlayers.org/api/OpenLayers.js"></script>
		<style type="text/css">
		</style>

		<script type="text/javascript">
		</script>

		<script src="http://ajax.googleapis.com/ajax/libs/dojo/1.8.3/dojo/dojo.js"></script>
    <script type="text/javascript" src="map.js"></script>
    
    <script type="text/javascript">
			require(["dojo/domReady!", "dojo"], function(dom, dojo) {
				var map = new Map("map");
			});
		</script>
	</head>
	<body class="tundra">
		<table>
			<tr><td>
				<div id="map" />
			</td></tr>
		</table>
	</body>
</html>