"use strict"; // Start of use strict // 7. google map function gMap () { if ($('.google-map').length) { $('.google-map').each(function () { // getting options from html var mapName = $(this).attr('id'); var mapLat = $(this).data('map-lat'); var mapLng = $(this).data('map-lng'); var iconPath = $(this).data('icon-path'); var mapZoom = $(this).data('map-zoom'); var mapTitle = $(this).data('map-title'); // if zoom not defined the zoom value will be 15; var mapZoom = 12; // init map var map; map = new GMaps({ div: '#'+mapName, scrollwheel: false, lat: 48.841667, lng: 2.332319, zoom: mapZoom }); // if icon path setted then show marker if(iconPath) { map.addMarker({ icon: iconPath, lat: 48.841667, lng: 2.332319 , title: "Agence du 6ème arrondissement" }); } }); }; } // instance of fuction while Document ready event jQuery(document).on('ready', function () { (function ($) { gMap(); })(jQuery); });