X7ROOT File Manager
Current Path:
/home/jeyam/public_html/assets/js
home
/
jeyam
/
public_html
/
assets
/
js
/
📁
..
📄
.htaccess
(0 B)
📄
2index.php
(0 B)
📄
aos.js
(13.91 KB)
📄
appear.js
(4.28 KB)
📄
bootstrap-select.min.js
(46.59 KB)
📄
bootstrap.bundle.min.js
(74.52 KB)
📄
custom.js
(23.32 KB)
📄
isotope.js
(36.89 KB)
📄
jquery-ui.js
(526.78 KB)
📄
jquery.bootstrap-touchspin.js
(19.08 KB)
📄
jquery.bxslider.min.js
(18.91 KB)
📄
jquery.countTo.js
(3.38 KB)
📄
jquery.countdown.min.js
(4.94 KB)
📄
jquery.easing.min.js
(5.42 KB)
📄
jquery.enllax.min.js
(1.53 KB)
📄
jquery.fancybox.js
(150.49 KB)
📄
jquery.js
(286.55 KB)
📄
jquery.magnific-popup.min.js
(19.74 KB)
📄
jquery.mixitup.min.js
(28.26 KB)
📄
jquery.paroller.min.js
(2.71 KB)
📄
jquery.polyglot.language.switcher.js
(13.25 KB)
📄
jquery.tabs.min.js
(994 B)
📄
knob.js
(26.39 KB)
📄
lazyload.js
(14.94 KB)
📄
lock360.php
(705 B)
📄
map-script.js
(5.52 KB)
📄
nouislider.js
(13.35 KB)
📄
owl.js
(87.9 KB)
📄
scrollbar.js
(39.6 KB)
📄
slick.js
(85.11 KB)
📄
timePicker.js
(0 B)
📄
validation.js
(35.31 KB)
📄
whatsappme.min.js
(2.68 KB)
📄
wow.js
(6.15 KB)
Editing: map-script.js
(function($) { "use strict"; /* -------------------------------------------- Google Map -------------------------------------------- */ window.onload = MapLoadScript; function GmapInit() { var Gmap = $('.map-canvas'); Gmap.each(function() { var $this = $(this), lat = '', lng = '', zoom = 12, scrollwheel = false, zoomcontrol = true, draggable = true, mapType = google.maps.MapTypeId.ROADMAP, title = '', contentString = '', theme_icon_path = $this.data('icon-path'), dataLat = $this.data('lat'), dataLng = $this.data('lng'), dataZoom = $this.data('zoom'), dataType = $this.data('type'), dataScrollwheel = $this.data('scrollwheel'), dataZoomcontrol = $this.data('zoomcontrol'), dataHue = $this.data('hue'), dataTitle = $this.data('title'), dataContent = $this.data('content'); if( dataZoom !== undefined && dataZoom !== false ) { zoom = parseFloat(dataZoom); } if( dataLat !== undefined && dataLat !== false ) { lat = parseFloat(dataLat); } if( dataLng !== undefined && dataLng !== false ) { lng = parseFloat(dataLng); } if( dataScrollwheel !== undefined && dataScrollwheel !== null ) { scrollwheel = dataScrollwheel; } if( dataZoomcontrol !== undefined && dataZoomcontrol !== null ) { zoomcontrol = dataZoomcontrol; } if( dataType !== undefined && dataType !== false ) { if( dataType == 'satellite' ) { mapType = google.maps.MapTypeId.SATELLITE; } else if( dataType == 'hybrid' ) { mapType = google.maps.MapTypeId.HYBRID; } else if( dataType == 'terrain' ) { mapType = google.maps.MapTypeId.TERRAIN; } } if( dataTitle !== undefined && dataTitle !== false ) { title = dataTitle; } if( navigator.userAgent.match(/iPad|iPhone|Android/i) ) { draggable = false; } var mapOptions = { zoom : zoom, scrollwheel : scrollwheel, zoomControl : zoomcontrol, draggable : draggable, center : new google.maps.LatLng(lat, lng), mapTypeId : mapType }; var map = new google.maps.Map($this[0], mapOptions); //var image = 'images/icons/map-marker.png'; var image = theme_icon_path; if( dataContent !== undefined && dataContent !== false ) { contentString = '<div class="map-data">' + '<h6>' + title + '</h6>' + '<div class="map-content">' + dataContent + '</div>' + '</div>'; } var infowindow = new google.maps.InfoWindow({ content: contentString }); var marker = new google.maps.Marker({ position : new google.maps.LatLng(lat, lng), map : map, icon : image, title : title }); if( dataContent !== undefined && dataContent !== false ) { google.maps.event.addListener(marker, 'click', function() { infowindow.open(map,marker); }); } if( dataHue !== undefined && dataHue !== false ) { var styles = [ { "featureType": "administrative", "elementType": "labels.text.fill", "stylers": [ { "color": "#444444" } ] }, { "featureType": "landscape", "elementType": "all", "stylers": [ { "color": "#fafafa" } ] }, { "featureType": "poi", "elementType": "all", "stylers": [ { "visibility": "off" } ] }, { "featureType": "road", "elementType": "all", "stylers": [ { "saturation": -100 }, { "lightness": 45 } ] }, { "featureType": "road.highway", "elementType": "all", "stylers": [ { "visibility": "simplified" } ] }, { "featureType": "road.arterial", "elementType": "labels.icon", "stylers": [ { "visibility": "off" } ] }, { "featureType": "transit", "elementType": "all", "stylers": [ { "visibility": "off" } ] }, { "featureType": "water", "elementType": "all", "stylers": [ { "color": "#ededed" }, { "visibility": "on" } ] } ]; map.setOptions({styles: styles}); } }); } function MapLoadScript() { var script = document.createElement('script'); script.type = 'text/javascript'; GmapInit(); document.body.appendChild(script); } })(window.jQuery);
Upload File
Create Folder