-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact1.html
executable file
·60 lines (44 loc) · 2.33 KB
/
contact1.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<html lang="en-US">
<head>
<title>Contact Us</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body >
<div class="container" style="margin-top:100px;">
<div class="row-fluid">
<div class="col-md-8" style="padding-top: 25px;
padding-bottom: 15px;">
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<div style="overflow:hidden;height:500px;width:800px;">
<div id="gmap_canvas" style="height:500px;width:600px;"></div>
<style>
#gmap_canvas img {
max-width: none!important;
background: none!important
}
</style></div>
<script type="text/javascript">
function init_map() {
var myOptions = {
zoom: 14,
center: new google.maps.LatLng(26.268184, 73.035309),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById("gmap_canvas"), myOptions);
marker = new google.maps.Marker({
map: map,
position: new google.maps.LatLng(26.268184, 73.035309)
});
infowindow = new google.maps.InfoWindow({
content: "<b>Mbm Engineering College</b><br/>Ratanada ,jodhpur<br/>Rajasthan"
});
google.maps.event.addListener(marker, "click", function () {
infowindow.open(map, marker);
});
infowindow.open(map, marker);
}
google.maps.event.addDomListener(window, 'load', init_map);
</script>
</div>
</body>
</html>