Hide add or pin button on map view

In a map view you see 2 actions to add a new row:

Fabian_Weller_0-1659692179299.png

How to hide BOTH buttons

  • Go to Data > Tables and open the table
  • Under "Are updates allowed" use an expression to only disable adds in map views with an expression like
    SWITCH(CONTEXT("ViewType"),
    "Map", "UPDATES_AND_DELETES",
    "ALL_CHANGES")
  • Or disable "Adds" if you never need to add new rows to the table.

How to hide the ADD button

  • Go to Actions and open the system generated Add Action
  • Set PROMINENCE to "Display inline" if you still need the Add Action in another view.
  • Or to "Do not display" if you never need the Add Action.
  • Or use an expression in "Only if this condition is true" to only disable adds in map views with an expression like
    CONTEXT("ViewType")<>"Map"

How to hide the PIN button

  • Add a virtual column to your table. Let's call it Address_VC
  • Under "App formula" enter your address column like [Address]
  • Go to the map view and change the "Map column" to [Address_VC]
5 2 611
  • UX
2 REPLIES 2

it is now easy to hide the Pin from the map.

Go to the map view and change map column to none.

Mustafa_Gulerca_0-1717070883084.png

 

Hi @Mustafa_Gulerca I think you misunderstood. Your solution would hide all the address pins on your map. The goal here is to hide the add button or the pin button that adds a new row.

Top Labels in this Space