MapView/ Marker Infobox Help

Hey guys,

It was possible to display a rectangle above the map, by implementing a GraphicView around a panel. Problem now is, that the interaction with the map is not possible. (Static Picture is shown)

We recognized on the android device, that after a tap on the marker a little box gets displayed above the marker. On iOS no info box appears? Is it possible to activate this box on iOS or to deactivate this box android? (Maybe we could use this info box as an overlay, instead of the above mentioned rectangle)

The third question is, how to trigger UX animation via. javascript?

Really appreicate any help or solutions.

Thanks in advance

Hi!

To display something above a map, simlpy put more stuff inside the NativeViewHost, e.g.

<NativeViewHost>
    <Panel>
        <Text Alignment="Top">I'm above the graphics view</Text>
        <MapView />
    </Panel>
</NativeViewHost>

Note the Alignment=“Top” to avoid having the text covering the whole MapView.

The third question is, how to trigger UX animation via. javascript?

There are many ways to do that, the most straight forward is to declare a <Timeline> in UX and use its javascript interface:

https://www.fusetools.com/docs/fuse/triggers/timeline