%PDF- %PDF-
Direktori : /var/www/html/friendstravel.al/wp-content/plugins/travel-booking/assets/js/frontend/ |
Current File : /var/www/html/friendstravel.al/wp-content/plugins/travel-booking/assets/js/frontend/gmap.js |
(function ($) { "use strict"; jQuery(document).ready(function () { var address = jQuery('#googleMapCanvas').data('address'); var lat = jQuery('#googleMapCanvas').data('lat'); var long = jQuery('#googleMapCanvas').data('long'); var mapElement = document.getElementById('googleMapCanvas'); var map, marker; if (!mapElement) { return; } var mapLang = null; function Show_G_map() { mapLang = new google.maps.LatLng(parseFloat(lat), parseFloat(long)), map = new google.maps.Map(mapElement, { scaleControl: true, center : mapLang, zoom : 8, // mapTypeId : google.maps.MapTypeId.ROADMAP, scrollwheel : false }), marker = new google.maps.Marker({ map : map, position: new google.maps.LatLng(lat, long) }); if (address) { var infowindow = new google.maps.InfoWindow(); infowindow.setContent(address); google.maps.event.addListener(marker, 'click', function () { infowindow.open(map, marker); }); } }; if ($('div').hasClass('location_tab_list')) { if (!mapLang) { Show_G_map(); } } $('.location_tab_tab').bind('touchstart click', function () { if (!mapLang) { Show_G_map(); $('ul.wc-tabs li a[href=#tab-location_tab]').on('click', function (e) { setTimeout(function () { google.maps.event.trigger(map, 'resize'); }, 50); }); } }); $('.woocommerce-tabs').on('shown-accordion.bs.tabcollapse', function () { if (!mapLang) { Show_G_map(); $('.panel-group a[href=#tab-location_tab-collapse]').on('click', function (e) { setTimeout(function () { google.maps.event.trigger(map, 'resize'); }, 50); }); } }); }); })(jQuery);