how can i take that latitude and longitude in a input field/form data to store in the data base? can you help?
@alanm.c.42188 ай бұрын
this method also work connecting to that application via phone? i mean it will ask you in your phone to allow your location?
@AbhishekSharma-fg1ho Жыл бұрын
in my case its not asking location and i am facing error which is can not access location and site is also not secure what i do
@arjumandtalat3 ай бұрын
I tried this on my pc and it showed the details there but when i used my phone to access the website and click the button and then i checked in the console of my pc, it didnt show anything and i couldnt see the user’s (my phone’s) lat long and stuff i can only see when i use my pc
@somnathruidas6483 ай бұрын
Name of the extension.
@krishnadhoot4141 Жыл бұрын
can u provide the source code?
@YoungestInCharge524 Жыл бұрын
bro blurred his lat and long😂😂 are you wanted?
@Koded Жыл бұрын
Yeah. Don't call FBI
@dahomtech1372 Жыл бұрын
Sir plz whay when open my website in android can't take theocation but when open my website by pc take location success
@c.l5378 Жыл бұрын
Is this work in Mobile phone
@Koded Жыл бұрын
of course, it will
@karismapribadi Жыл бұрын
Hi bro, I want just to run script.js only, not with IP, but after I upload it on hosting, permission always denied, I tried in different device but the error result still same, do you have suggestion?
@karismapribadi Жыл бұрын
It's worked if I run it via localhost, error while I tried this code online
@killerpop1017 Жыл бұрын
what app are you using?
@Koded Жыл бұрын
I am using Firefox and VS code.
@yashparab1304 Жыл бұрын
If a user already or previously agrees to share his location or means we have its permission now we directly access its location,when the website is getting loaded , how can we implement that in javascript?
@Koded Жыл бұрын
yep, that works with the code in the video. If the user agrees, it is saved in the browser and the if condition in our code checks for the same
@dahomtech1372 Жыл бұрын
@@Koded Sir plz whay when open my website in android can't take theocation but when open my website by pc take location success
@gameboyv1790 Жыл бұрын
can you make it so you still get the location if they decline
@Koded Жыл бұрын
You can use ip address to get the location
@gameboyv1790 Жыл бұрын
@@Koded pls help me
@Koded Жыл бұрын
I have shown two different ways in the video. You can try another if one doesn't work 🙂
@yashvantsinhchavda37112 жыл бұрын
👍
@Koded2 жыл бұрын
👍
@amanshetty522 Жыл бұрын
where can i get the source code bro
@mixrapmusic8118 Жыл бұрын
Here's an example of how to use the Geolocation API in HTML: ```html Geolocation Example function getLocation() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(showPosition); } else { alert("Geolocation is not supported by this browser."); } } function showPosition(position) { var latitude = position.coords.latitude; var longitude = position.coords.longitude; alert("Latitude: " + latitude + " Longitude: " + longitude); } Get Location ```