I check the code of URL: http://www.telerik.com/help/silverlight/radmap-features-kml-data-import.html
Can I use webservice or other web source to imlpement the URI object as the data source?
Because the KML file is too big to download.
If the KmlReader can read the source, can you post the sample code?
private void LoadKMLData() { StreamResourceInfo streamResource = Application.GetResourceStream( new Uri( "/Sample;component/Data/bulgaria.kml", UriKind.RelativeOrAbsolute ) ); List<FrameworkElement> elements = KmlReader.Read( streamResource.Stream ); foreach ( FrameworkElement element in elements ) { this.informationLayer.Items.Add( element ); } }