mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-14 01:20:27 +00:00
27 lines
632 B
JavaScript
27 lines
632 B
JavaScript
|
var ContactUs = function () {
|
||
|
|
||
|
return {
|
||
|
//main function to initiate the module
|
||
|
init: function () {
|
||
|
var map;
|
||
|
$(document).ready(function(){
|
||
|
map = new GMaps({
|
||
|
div: '#map',
|
||
|
lat: -13.004333,
|
||
|
lng: -38.494333
|
||
|
});
|
||
|
var marker = map.addMarker({
|
||
|
lat: -13.004333,
|
||
|
lng: -38.494333,
|
||
|
title: 'Loop, Inc.',
|
||
|
infoWindow: {
|
||
|
content: "<b>Loop, Inc.</b> 795 Park Ave, Suite 120<br>San Francisco, CA 94107"
|
||
|
}
|
||
|
});
|
||
|
|
||
|
marker.infoWindow.open(map, marker);
|
||
|
});
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}();
|