Using GoogleMaps to go directly to a DataView via Deeplink

3
I am using GoogleMaps from the Appstore to display cases which are related to addresses. In the GoogleMaps Balloon I display among other values the deeplink string. How to display the deeplink string in GoogleMaps Balloon as click-able link ?
asked
2 answers
4

Just generate an HTML string. Example: MF returns

'<a href="' + $mydeeplink + '">click me </a>'
answered
3

The GoogleMaps display attribute is interpreted as HTML. You can either use the Rich Text to create a link or create this with a microflow using <a href="">.

answered