https://developers.google.com/maps/documentation/javascript/reference?hl=fr#MarkerOptions */ values: [ { address: "23, Mornington Crescent, London", data: "Our main office" }, { address: "23, Swinton St, London", data: "Our store" } ], options: { icon: SkinPath + "/img/marker.png", /* Icon for the foreground. */ animation: google.maps.Animation.DROP /* Two possible types of animation: "DROP" and "BOUNCE" */ }, events: { mouseover: function (marker, event, context) { var map = $(this).gmap3("get"), infowindow = $(this).gmap3({ get: { name: "infowindow"} }); if (infowindow) { infowindow.open(map, marker); infowindow.setContent(context.data); } else { $(this).gmap3({ infowindow: { anchor: marker, options: { content: context.data } } }); } }, mouseout: function () { var infowindow = $(this).gmap3({ get: { name: "infowindow"} }); if (infowindow) { infowindow.close(); } } } }, map: { /* You can check the full list of map options here --> https://developers.google.com/maps/documentation/javascript/reference#MapOptions */ options: { zoom: 14, /* The initial Map zoom level. Required. */ scrollwheel: false, /* If false, disables scrollwheel zooming on the map. The scrollwheel is enabled by default. true/false */ mapTypeControl: false, /* The initial enabled/disabled state of the Map type control. true/false */ streetViewControl: false, /* The initial enabled/disabled state of the Street View Pegman control. This control is part of the default UI, and should be set to false when displaying a map type on which the Street View road overlay should not appear (e.g. a non-Earth map type). true/false */ scalControl: false, /* The initial enabled/disabled state of the Scale control. true/false */ draggable: isDraggable } } }); } }); -->