-
Notifications
You must be signed in to change notification settings - Fork 2
/
map.html
38 lines (29 loc) · 1.05 KB
/
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
36
37
38
<!DOCTYPE html>
<!--
Raksha Jayaram:
source:1. http://www.zillow.com/howto/api/APIOverview.htm
2.https://developers.google.com/maps/documentation/javascript/geocoding?csw=1
3.https://developers.google.com/maps/documentation/javascript/markers
-->
<html lang="en">
<head>
<title>Web Mashup: Display House Prices on a Map</title>
<meta charset="utf-8"/>
<script type="text/javascript" src="map.js"></script>
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=my_maps_key">
</script>
</head>
<body onload="initialize();">
<form id="do_reset">
<label>House address: <input type="text" id="addr"/></label>
<input type="button" onclick="sendRequest();" value="Display Info"/>
<input type ="button" onclick="clearform();" value="clear">
</form>
<div id="map" style="width: 600px; height: 500px;"></div><br/>
<span id="output" ></span>
<div id="results"> </div>
<div id="zilla"> </div>
<div id="reverse"> </div>
</body>
</html>