-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmaps.js
25 lines (24 loc) · 1.05 KB
/
maps.js
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
function init_map() {
var myOptions = {
zoom: 17,
center: new google.maps.LatLng(30.5160865, 76.659899999),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(
document.getElementById("gmap_canvas"),
myOptions
);
marker = new google.maps.Marker({
map: map,
animation: google.maps.Animation.BOUNCE,
position: new google.maps.LatLng(30.5160865, 76.659899999)
});
infowindow = new google.maps.InfoWindow({
content: "<strong>Chitkara University</strong><br>Chandigarh-Patiala National Highway (NH- 64), Village, Jansla, Rajpura, Punjab 140401<br> Punjab<br>"
});
google.maps.event.addListener(marker, "click", function () {
infowindow.open(map, marker);
});
infowindow.open(map, marker);
}
google.maps.event.addDomListener(window, "load", init_map);