Remove Location Display

So I have this in bottom right, and don’t know how to remove it, strange thing is I don’t have location display installed , so dont know if this is a standard GTA function and if so, how to I get rid of it !
As you can see in the gps display I have it there image
image

Use the HideHudComponentThisFrame() native and call it every tick.

Thanks I have done it - appreciate your help

1 Like

How exactly do I do that?

Is this what I need to put on?

Citizen.CreateThread(function()
    while true do
        Citizen.Wait(0)
        HideHudComponentThisFrame(7)
    end
end)

If that is the ID of the component which is for the location display, yes. There’s a list documented on one of the HUD component natives.