blob: a2df3c3416f37b84f2b73849287e83db9ef422c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<title>Hospital map</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<script src="resources/jquery-1.8.3.js"></script>
<link rel="stylesheet" href="resources/leaflet/leaflet.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="resources/leaflet/leaflet.ie.css" /><![endif]-->
<link rel="stylesheet" href="resources/map.css" />
<script src="resources/leaflet/leaflet.js"></script>
</head>
<body>
<div id="map"></div>
<script src="resources/map.js"></script>
</body>
</html>
|