SyncFusion have released a bunch of ebooks.
They're also doing lots of promotion through blogs and giving away licenses. I'm sure you can find such a blog if you look.
public class MyPin { public GeoCoordinate Coordinate { get; set; } public string Name { get; set; } }
public class MyPin { public double Longitude { get; set; } public double Latitude { get; set; } public string Name { get; set; } }
Then I just define my resource:public class PinToGeoCoordinateConverter : IValueConverter { public object Convert(object value, Type targetType, object para, CultureInfo culture) { var pin = value as MyPin; return pin != null ? new GeoCoordinate(pin.Latitude, pin.Longitude) : new GeoCoordinate(); } public object ConvertBack(object valu, Type targetType, object para, CultureInfo culture) { throw new NotImplementedException(); } }
<phone:PhoneApplicationPage.Resources> <converters:PinToGeoCoordinateConverter x:Key="PinToGeo" /> </phone:PhoneApplicationPage.Resources>
<map:Map x:Name="TheMap"> <toolkit:MapExtensions.Children> <toolkit:MapItemsControl> <toolkit:MapItemsControl.ItemTemplate> <DataTemplate> <toolkit:Pushpin GeoCoordinate="{Binding Converter={StaticResource PinToGeo}}" Content="{Binding Name}" /> </DataTemplate> </toolkit:MapItemsControl.ItemTemplate> </toolkit:MapItemsControl> </toolkit:MapExtensions.Children> </map:Map>
:("Due to system issue, our backend team was unable to migrate the Mobile Services from source to destination subscription and they are working to fix it but we do not have any ETA for it.You would need to back up the Mobile Services from Source subscription and re-deploy it to the destination subscription. I sincerely apologies for any inconvenience caused due to this."