Software: Apache. PHP/8.1.30 uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root) Safe-mode: OFF (not secure) /home/picotech/domains/wataxi.picotech.app/public_html/public/custom/js/ drwxr-xr-x |
Viewing file: Select action/file-type: "use strict"; var map, infoWindow, marker, lat, lng; function initMap() { map = new google.maps.Map(document.getElementById('map2'), {center: {lat: -34.397, lng: 150.644}, zoom: 15 }); marker = new google.maps.Marker({ position: {lat: -34.397, lng: 150.644}, map: map, title: 'Click to zoom'}); infoWindow = new google.maps.InfoWindow; if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(function(position) { var pos = { lat: position.coords.latitude, lng: position.coords.longitude }; map.setCenter(pos); marker.setPosition(pos); lat = position.coords.latitude; lng = position.coords.longitude; }, function() { }); } else { } map.addListener('click', function(event) { var currPos = new google.maps.LatLng(event.latLng.lat(),event.latLng.lng()); marker.setPosition(currPos); lat = event.latLng.lat() lng = event.latLng.lng(); }); } $("#submitNewAddress").on("click",function() { saveLocation(lat, lng); }); function saveLocation(lat, lng){ var new_address = $('#new_address').val(); if(new_address.length > 0){ $.ajaxSetup({ headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') } }); $.ajax({ type:'POST', url: '/addresses', dataType: 'json', data: { new_address: new_address, lat: lat, lng: lng }, success:function(response){ if(response.status){ window.location.href = "/addresses"; } }, error: function (response) { } }) } } function handleLocationError(browserHasGeolocation, infoWindow, pos) { infoWindow.setPosition(pos); infoWindow.setContent(browserHasGeolocation ? 'Error: The Geolocation service failed.' : 'Error: Your browser doesn\'t support geolocation.'); infoWindow.open(map); } |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0049 ]-- |