forked from nickygiorgi/leaflet.js-simple-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.html
More file actions
50 lines (47 loc) · 1.49 KB
/
Copy pathmap.html
File metadata and controls
50 lines (47 loc) · 1.49 KB
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
<!DOCTYPE html>
<head>
<title>Full Screen Leaflet.js Map</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" />
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="http://cdn.leafletjs.com/leaflet-0.7/leaflet.js"></script>
<script src="http://maps.google.com/maps/api/js?v=3.2&sensor=false"></script>
<!-- <script src="includes/js/leaflet-google.js"></script>
https://github.com/shramov/leaflet-plugins/blob/master/layer/tile/Google.js -->
<script src="includes/js/utilities.js"></script>
<script src="includes/js/map-manager.js"></script>
<script src="includes/js/map.js"></script>
<style>
body {
padding: 0;
margin: 0;
}
html, body, #form1, #map {
height: 100%;
width: 100%;
}
.div-logo-title {
background-color: #FFFFFF;
height: 60px;
left: 10px;
padding-top: 10px;
position: absolute;
text-align: center;
top: 47px;
width: 215px;
z-index: 10;
}
#custom-zoom-control {
position: absolute;
right: 10px;
bottom: 50px;
z-index: 10;
}
</style>
</head>
<body>
<div id="map"></div>
<div class="div-logo-title">Leaflet.js Simple Example</div>
<div id="custom-zoom-control"></div>
</body>
</html>,