Map label not showing and MarkedTapped

Hi,

1.- in iOS it doesn’t display any of the marker labels in my map (it displays my own location + all the markers):

        <Panel>
            <NativeViewHost>
                <MapView ux:Name="map" Latitude="{vMapLat}" Longitude="{vMapLng}" ShowMyLocation="true">
                    <Each Items="{mapMarkers}">
                        <MapMarker Latitude="{latitude}" Longitude="{longitude}" Label="{label}" />
                    </Each>
                </MapView>
            </NativeViewHost>
        </Panel>

2.- if i add MarkerTapped the app crashes as soon as i show the map:

<MapView ux:Name="mapaPlace" Latitude="{vMapLat}" Longitude="{vMapLng}" ShowMyLocation="true" MarkerTapped="{onMapMarkerTapped}">

Xcode output:

016-04-21 14:31:07.394 TrustMe[5482:104576] Unable to simultaneously satisfy constraints. Probably at least one of the constraints in the following list is one you don’t want. Try this: (1) look at each constraint and try to figure out which you don’t expect; (2) find the code that added the unwanted constraint or constraints and fix it. ( “”, “”, “” )

Will attempt to recover by breaking constraint

Hey, the mapmarkers not rendering on iOS is a workaround for a known issue and is being worked on. The MarkerTapped crash is super strange, I’ll look into it.