-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (26 loc) · 1.12 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
<html>
<head>
<title>FandsMap</title>
<link rel="stylesheet" type="text/css" href="styles.css" media="screen" />
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.5/leaflet.css" />
<link rel="stylesheet" type="text/css" href="toastr.min.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.5/leaflet.js"></script>
<script src="jquery-1.10.1.js"></script>
<script src="lastfm.js"></script>
<script type="text/javascript" src="toastr.min.js"></script>
</head>
<body>
<form class="form-wrapper cf">
<input id= "txt_input" type="text" placeholder="Country here..." required>
<button id="submit_btn">Search</button>
</form>
<div id="map"></div>
<script>
var map = L.map('map').setView([37.505, -0.09], 2);
L.tileLayer('http://{s}.tile.cloudmade.com/BC9A493B41014CAABB98F0471D759707/997/256/{z}/{x}/{y}.png', {
maxZoom: 18,
attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, Imagery © <a href="http://cloudmade.com">CloudMade</a>'
}).addTo(map);
</script>
</body>
</html>