> For the complete documentation index, see [llms.txt](https://abdulkadir-aktas.gitbook.io/qadr_docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://abdulkadir-aktas.gitbook.io/qadr_docs/qadr_ui/map-ui/map-info.md).

# Map Info

### Video

{% embed url="<https://youtu.be/EyTtbkPqkVo>" %}

### Example

```lua
RegisterCommand("mapinfo",function()
    local data = {
        title = "title",
        subTitle = "subTitle",
        texture = {
            dict = "pausemenu_textures",
            name = "horse_background",
        },
        description = [[
        Description
        Line 2
        Line 3
        Line 4
        Description
        Line 6
        ]],
        footer = "footer2",
        hovered = true,
        hoveredname = "hoveredname",
    }
    exports["qadr_ui"]:createMapInfo(data,function(callbackData)
        if callbackData then
            print("mapinfo callback")
        end
    end)
end)
```

{% hint style="warning" %}
If you use info UI, [Hovered Blip Name](/qadr_docs/qadr_ui/map-ui/hovered-blip-name.md#default-blip-name) changes will be removed and you must set this again.
{% endhint %}
