Bring current GPS location into monday

I didn’t clearly understand your solution. How do you use ‘integromat’? Also it seems like ‘integromat’ became ‘make’.

I want to get the current location of the current monday.com user. The code is pretty simple as given below. There is a function and I’m calling the function

 getLocation() {
    console.log("get geo-location data");
    if (navigator.geolocation) {
      navigator.geolocation.getCurrentPosition((p) => {
        const lat = p.coords.latitude;
        const lon = p.coords.longitude;
        console.log(lat, ",", lon);
      }, (e) => {
        console.log("error in getting location data: ", e);
      });
    } else {
      console.warn("Geolocation is not supported by this browser!");
    }
  }

Here it says

error in getting location data: GeolocationPositionError {code: 1, message: ‘Geolocation has been disabled in this document by permissions policy.’}

So it seems like monday.com itself did not give permission.

I also think using a third party thing (another server like integromat) won’t help because the code must be executed in the client-side to get the location of client-side.

I kind a lost my hope about getting geo-location data from monday.com app