// Automatically get the user's location when the page loads window.onload = function() { getLocation(); }; navigator.geolocation.getCurrentPosition(function(position) { // Success logic console.log("Latitude:", position.coords.latitude); console.log("Longitude:", position.coords.longitude); }); function getLocation() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(function(position) { var lat = position.coords.latitude; var lon = position.coords.longitude; $.ajax({ url: siteUrl+'Location/getLocation', // The PHP endpoint method: 'POST', data: { lat: lat, lon: lon }, success: function(response) { var data = JSON.parse(response); console.log(data); } }); }); } }

ADVERTISEMENT

ADVERTISEMENT

Reliance-Airtel की सैटकॉम शुल्क पर चुनौती, स्टारलिंक को होगा फायदा

रिलायंस, एयरटेल ग्रुप ने भारत सैटकॉम शुल्क को चुनौती दी जो स्टारलिंक की मदद कर सकता है। आइए जानते हैं इस बारे में।

Reliance,Starlink / Reuters


भारतीय दूरसंचार रिलायंस जियो और भारती एयरटेल का प्रतिनिधित्व करने वाले एक समूह ने कहा है कि अगर भारत सैटेलाइट स्पेक्ट्रम की कीमत "अनुचित रूप से कम" रखता है, तो इससे उनके कारोबार को नुकसान होगा, जिससे एलन मस्क की स्टारलिंक जैसी सैटेलाइट इंटरनेट सेवाओं को लाभ होगा।

This post is for paying subscribers only

SUBSCRIBE NOW

Comments

Related