Server IP : 162.241.126.129 / Your IP : 18.191.171.86 Web Server : Apache System : Linux 162-241-126-129.cprapid.com 4.18.0-477.27.2.el8_8.x86_64 #1 SMP Fri Sep 29 08:21:01 EDT 2023 x86_64 User : rvway5nu4 ( 1018) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/rvway5nu4/www/js/us/ |
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": "landscape", "elementType": "labels", "stylers": [{ "visibility": "off" }] }, { "featureType": "transit", "elementType": "labels", "stylers": [{ "visibility": "off" }] }, { "featureType": "poi", "elementType": "labels", "stylers": [{ "visibility": "off" }] }, { "featureType": "water", "elementType": "labels", "stylers": [{ "visibility": "off" }] }, { "featureType": "road", "elementType": "labels.icon", "stylers": [{ "visibility": "off" }] }, { "stylers": [{ "hue": "#00aaff" }, { "saturation": -100 }, { "gamma": 2.15 }, { "lightness": 12 }] }, { "featureType": "road", "elementType": "labels.text.fill", "stylers": [{ "visibility": "on" }, { "lightness": 24 }] }, { "featureType": "road", "elementType": "geometry", "stylers": [{ "lightness": 57 }] }]; // if zoom not defined the zoom value will be 15; if (!mapZoom) { var mapZoom = 14; }; // 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 } }); }); } }); }; } // 7. google map function gMapDark() { if ($('.google-map-dark').length) { $('.google-map-dark').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": "all", "elementType": "labels.text.fill", "stylers": [{ "saturation": 36 }, { "color": "#000000" }, { "lightness": 40 }] }, { "featureType": "all", "elementType": "labels.text.stroke", "stylers": [{ "visibility": "on" }, { "color": "#000000" }, { "lightness": 16 }] }, { "featureType": "all", "elementType": "labels.icon", "stylers": [{ "visibility": "off" }] }, { "featureType": "administrative", "elementType": "geometry.fill", "stylers": [{ "color": "#000000" }, { "lightness": 20 }] }, { "featureType": "administrative", "elementType": "geometry.stroke", "stylers": [{ "color": "#000000" }, { "lightness": 17 }, { "weight": 1.2 }] }, { "featureType": "landscape", "elementType": "geometry", "stylers": [{ "color": "#000000" }, { "lightness": 20 }] }, { "featureType": "poi", "elementType": "geometry", "stylers": [{ "color": "#000000" }, { "lightness": 21 }] }, { "featureType": "road.highway", "elementType": "geometry.fill", "stylers": [{ "color": "#000000" }, { "lightness": 17 }] }, { "featureType": "road.highway", "elementType": "geometry.stroke", "stylers": [{ "color": "#000000" }, { "lightness": 29 }, { "weight": 0.2 }] }, { "featureType": "road.arterial", "elementType": "geometry", "stylers": [{ "color": "#000000" }, { "lightness": 18 }] }, { "featureType": "road.local", "elementType": "geometry", "stylers": [{ "color": "#000000" }, { "lightness": 16 }] }, { "featureType": "transit", "elementType": "geometry", "stylers": [{ "color": "#000000" }, { "lightness": 19 }] }, { "featureType": "water", "elementType": "geometry", "stylers": [{ "color": "#000000" }, { "lightness": 17 }] }]; // if zoom not defined the zoom value will be 15; if (!mapZoom) { var mapZoom = 14; }; // 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); }); // instance of fuction while Document ready event jQuery(document).on('ready', function() { (function($) { gMapDark(); })(jQuery); });