forked from bjorn2404/jQuery-Store-Locator-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeocode.html
35 lines (29 loc) · 1008 Bytes
/
geocode.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>
<head>
<title>Geocode</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/map.css" />
</head>
<body>
<div id="store-locator-container">
<div id="page-header">
<h1>Simple geocoding form</h1>
<p>You can use the following form to geocode a location.</p>
</div>
<div id="form-container">
<form id="user-location" method="post" action="#">
<div id="form-input">
<label for="address">Enter Address or Zip Code:</label>
<input type="text" id="address" name="address" />
</div>
<button id="submit" type="submit">Submit</button>
</form>
</div>
<div id="geocode-result"></div>
</div>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script src="js/geocode.js"></script>
</body>
</html>