"use strict"; $(function() { // Create the map var map = new google.maps.Map($('.map-canvas')[0], { zoom: 14, scrollwheel: false, center: new google.maps.LatLng( 44.10215413020929, 5.10294800499513 ) }); // Add a marker var marker = new google.maps.Marker({ map: map, position: new google.maps.LatLng( 44.10215413020929, 5.10294800499513 ) }); // Add a Snazzy Info Window to the marker var info = new SnazzyInfoWindow({ marker: marker, content: '

Cabinet Compta Ventoux

1 Route de Carpentras – 84330 CAROMB

', closeOnMapClick: false }); info.open(); });