Is there a way to remove the openstreetmaps label and specifically the ‘provide feedback ’ link at the bottom right of the map view?
If a user clicks this accidentally, there is no way to return to the map and the screen gets stuck on the interal browser window opened.
Thank you
msohm
December 5, 2025, 7:08pm
2
There is no way to hide the Provide Feedback link. That is something I could look into (Edit: see my next reply ).
We are not able to hide the OpenStreetMap attribution, showing that is an OpenStreetMap requirement.
msohm
December 5, 2025, 7:28pm
3
Removing the Provide Feedback link is something that was recently added, but has not yet been included in the API docs. It’ll appear there soon, but in the meantime here is how you can hide it.
const mapView = await show3dMap(document.getElementById('mappedin-map') as HTMLDivElement, mapData, {
attribution: {
feedback: false,
},
});