How to remove device track points from Nextcloud Maps

I opened Nextcloud Maps on my mobile Firefox and it asked for my geolocation. I accepted and now I have an entry of my location from Phone (Firefox/Android).

The problem is, that I already track my location using PhoneTrack hoooked up to the Nextcloud log and I see it as SM-G975F (PhoneTrack/Android). I don’t want to have both. I already disallowed geolocation in Firefox, but the lone entry is still there. I know that I can hide it, but it’s annoying that it’s still there.

Is there a way to remove any traces of it?

1 Like

I have the same question. I need the ability to remove Tracks and Devices I added as they become unneeded.

same question here. i’m pretty sure there used to be a “delete” entry in the context menu for each device. But now I can’t find it anymore.
What other options are there to delete a device from the list?

Hi, I am new here, having the same question. As I see no updates, any guesses what is the correct way to make this thread visible to someone of the developers?

Have the same problem.
Have tried to remove the icons but with no help.

  1. Connect to nextcloud database (change database name accordinaly):
    \c nextcloud
    Show all devices. Here find your device ID:
    select * from oc_maps_devices;
  2. Delete device from database. In this example deleted device id=2
    delete from oc_maps_devices where id=2;
  3. Delete all device records. Here also device_id=2 (same device like in the second step)
    delete from oc_maps_device_points where device_id=2;

I have lost sight of the topic. I now use Nextcloud AIO and the problem is still present.

The instructions from Senelinux sound promising. Unfortunately, I have no idea about databases and I don’t understand the commands either. Can someone please explain to me how to use the commands?