MapView markers

How would you go on about adding markers for a MapView object?

Wrap each marker in a standard Each loop?

Yup, that seems to be it.

			            <MapView Latitude="41.9964600" Longitude="21.4314100" Zoom="10">
			                <Each Items="{locations}">
			                	<Each Items="{Locations}">
			                		<MapMarker Latitude="{lat}" Longitude="{lon}" Label="{Title}"/>
			                	</Each>
			                </Each>
			            </MapView>