-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather_map.html
35 lines (34 loc) · 1.51 KB
/
weather_map.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Weather map</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyA6QF_vEdSzxYly9t2UZSbUgPzvVuqeQ30&libraries=places"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.17.1/moment.js"></script>
<link rel="stylesheet" href="css/weather_map.css">
</head>
<body>
<div class="container">
<div id="weather-container" class="container">
<h2>Weather application</h2>
<div class="row">
<div id="current-city" class="col-md-4"></div>
<!--<div id="enter-coordinates" class="col-sm-6">-->
<!--Latitude: <input type="text" id="latitude" value="">Longitude: <input type="text" id="longitude" value=""><button id="new-coordinates">Set new coordinates</button>-->
<!--</div>-->
</div>
<div id="weather-report" class="table">
<!-- This is where I will programmatically send weather data. -->
</div>
</div>
<div id="google-map" class="container">
<input id="pac-input" class="controls" type="text" placeholder="Search Box">
<div id="map-canvas"></div>
</div>
</body>
<script src="js/weather_map.js"></script>
</html>