-
Notifications
You must be signed in to change notification settings - Fork 27
/
index.php
22 lines (20 loc) · 938 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Google Maps JavaScript API</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<label for="">Address: <input id="map-search" class="controls" type="text" placeholder="Search Box" size="104"></label><br>
<label for="">Lat: <input type="text" class="latitude"></label>
<label for="">Long: <input type="text" class="longitude"></label>
<label for="">City <input type="text" class="reg-input-city" placeholder="City"></label>
<div id="map-canvas"></div>
<script src="javascript.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB4ZF2GU_edxPVaVnbxcwuEvyyQhU21sFw&libraries=places&callback=initialize"></script>
</body>
</html>