You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
feo-homepage/core/static/js/pages/page_contacts.js

37 lines
698 B

var ContactPage = function () {
return {
//Basic Map
initMap: function () {
var map;
$(document).ready(function(){
map = new GMaps({
div: '#map',
scrollwheel: false,
lat: 40.748866,
lng: -73.988366
});
var marker = map.addMarker({
lat: 40.748866,
lng: -73.988366,
title: 'Company, Inc.'
});
});
},
//Panorama Map
initPanorama: function () {
var panorama;
$(document).ready(function(){
panorama = GMaps.createPanorama({
el: '#panorama',
lat : 40.748866,
lng : -73.988366
});
});
}
};
}();