Override location property

Hi,
This is my first day using Thinger. Very impresive, well done guys.

I have added (and can view correct) location data to a bucket using the example:

thing[“location”] >> [](pson& out){
out[“lat”] = gps.getLatitude();
out[“lon”] = gps.getLongitude();
};

In Device tab ~ Device Location Map it says I can add a location property to get an acurate location.

My question is: How do I do that?
Cheers…

Hi,

Here you have the related doc → https://docs.thinger.io/features/devices-administration#device-properties

Be carefull how often you call the set property command.

Hope this helps.

excellent, thanks.