[Release] Show any blip on map

Hi all! Sorry for dig up the topic.
I would like to know if it is possible to add blips on the start/esc menu but not on the minimap (or only if im near the map)?
I blipped the tracks on my server, but there is 20 tracks so it is messy

Also is there a way to remove GTA V blips, and show only my own blips?

my man, how can i change the blip size?

Anyone know how to change the blip name ?

This adds blips to the coords you specify, change the id and it will change the icon, and of course change your coords and name of blip to whatever you want. Then just add more lines to local Blips to add more on your map :smiley:

local Blips = {
    { name="Name of blip goes here", color=47, id=52,x=-1110.72, y=2694.12, z=34.0}, 
}

Citizen.CreateThread(function()
    for _, item in pairs(Blips) do
        item.blip = AddBlipForCoord(item.x, item.y, item.z)
        SetBlipSprite(item.blip, item.id)
        SetBlipAsShortRange(item.blip, true)
        BeginTextCommandSetBlipName("STRING")
        AddTextComponentString(item.name)
        EndTextCommandSetBlipName(item.blip)
    end
end)

How do I make an array and a table I can edit?

link ?