Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 3.139.80.172
54 Domain
7.3.33
dpclient
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
dpclient /
public_html /
noormertech /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
app.js
2.75
KB
-rw-r--r--
appear.js
4.28
KB
-rw-r--r--
bootstrap.min.js
49.54
KB
-rw-r--r--
element-in-view.js
3.45
KB
-rw-r--r--
isotope.js
36.89
KB
-rw-r--r--
jquery-ui.js
526.78
KB
-rw-r--r--
jquery.fancybox.js
150.49
KB
-rw-r--r--
jquery.js
83.57
KB
-rw-r--r--
map-script.js
4.72
KB
-rw-r--r--
owl.js
83.3
KB
-rw-r--r--
paroller.js
8.6
KB
-rw-r--r--
particles.js
42
KB
-rw-r--r--
popper.min.js
20.02
KB
-rw-r--r--
script.js
8.73
KB
-rw-r--r--
validate.js
20.4
KB
-rw-r--r--
wow.js
6.15
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : map-script.js
/* -------------------------------------------- Google Map -------------------------------------------- */ window.onload = MapLoadScript; function GmapInit() { 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 = '', 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'; 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": "#272727" } ] }, { "featureType": "landscape", "elementType": "all", "stylers": [ { "color": "#f1efe9" } ] }, { "featureType": "poi", "elementType": "all", "stylers": [ { "visibility": "on" } ] }, { "featureType": "road", "elementType": "all", "stylers": [ { "saturation": -20 }, { "lightness": 20 } ] }, { "featureType": "road.highway", "elementType": "all", "stylers": [ { "visibility": "off" }, { "color": "#fa6f1c" } ] }, { "featureType": "road.arterial", "elementType": "labels.icon", "stylers": [ { "visibility": "off" } ] }, { "featureType": "transit", "elementType": "all", "stylers": [ { "visibility": "off" } ] }, { "featureType": "water", "elementType": "all", "stylers": [ { "color": "#a5c6fd" }, { "visibility": "on" } ] } ]; map.setOptions({styles: styles}); } }); } function MapLoadScript() { var script = document.createElement('script'); script.type = 'text/javascript'; GmapInit(); document.body.appendChild(script); }
Close