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
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?
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?
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 ```
how can i take that latitude and longitude in a input field/form data to store in the data base? can you help?
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
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
this method also work connecting to that application via phone? i mean it will ask you in your phone to allow your location?
can u provide the source code?
Sir plz whay when open my website in android can't take theocation but when open my website by pc take location success
Name of the extension.
bro blurred his lat and long😂😂 are you wanted?
Yeah. Don't call FBI
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?
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
@@Koded Sir plz whay when open my website in android can't take theocation but when open my website by pc take location success
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?
It's worked if I run it via localhost, error while I tried this code online
Is this work in Mobile phone
of course, it will
what app are you using?
I am using Firefox and VS code.
can you make it so you still get the location if they decline
You can use ip address to get the location
@@Koded pls help me
I have shown two different ways in the video. You can try another if one doesn't work 🙂
where can i get the source code bro
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
```
👍
👍