Get user location with javascript || Two methods (with/without permission)

Поділитися
Вставка
  • Опубліковано 25 гру 2024

КОМЕНТАРІ • 31

  • @tazimtazvi3645
    @tazimtazvi3645 Рік тому +1

    how can i take that latitude and longitude in a input field/form data to store in the data base? can you help?

  • @AbhishekSharma-fg1ho
    @AbhishekSharma-fg1ho Рік тому +1

    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

  • @arjumandtalat
    @arjumandtalat 5 місяців тому

    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

  • @alanm.c.4218
    @alanm.c.4218 9 місяців тому

    this method also work connecting to that application via phone? i mean it will ask you in your phone to allow your location?

  • @dahomtech1372
    @dahomtech1372 Рік тому

    Sir plz whay when open my website in android can't take theocation but when open my website by pc take location success

  • @krishnadhoot4141
    @krishnadhoot4141 Рік тому +2

    can u provide the source code?

  • @somnathruidas648
    @somnathruidas648 5 місяців тому

    Name of the extension.

  • @karismapribadi
    @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
      @karismapribadi Рік тому

      It's worked if I run it via localhost, error while I tried this code online

  • @yashparab1304
    @yashparab1304 Рік тому +1

    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
      @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
      @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

  • @c.l5378
    @c.l5378 Рік тому +1

    Is this work in Mobile phone

    • @Koded
      @Koded  Рік тому

      of course, it will

  • @YoungestInCharge524
    @YoungestInCharge524 Рік тому +4

    bro blurred his lat and long😂😂 are you wanted?

    • @Koded
      @Koded  Рік тому +1

      Yeah. Don't call FBI

  • @killerpop1017
    @killerpop1017 Рік тому

    what app are you using?

    • @Koded
      @Koded  Рік тому

      I am using Firefox and VS code.

  • @gameboyv1790
    @gameboyv1790 Рік тому

    can you make it so you still get the location if they decline

    • @Koded
      @Koded  Рік тому

      You can use ip address to get the location

    • @gameboyv1790
      @gameboyv1790 Рік тому

      @@Koded pls help me

    • @Koded
      @Koded  Рік тому

      I have shown two different ways in the video. You can try another if one doesn't work 🙂

  • @amanshetty522
    @amanshetty522 Рік тому

    where can i get the source code bro

    • @mixrapmusic8118
      @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
      ```

  • @yashvantsinhchavda3711
    @yashvantsinhchavda3711 2 роки тому +1

    👍