This question is locked. New answers and comments are not allowed.
After upgrading to the latest version, we can no longer build our map Silverlight code.
This is the original code:
Uri worldUri = new Uri(string.Format(ShapeRelativeUriFormat, "world"), UriKind.Absolute);
this.worldLayer.Reader = new MapShapeReader();
this.worldLayer.Reader.Source = worldUri;
We are receiving errors on :
'Telerik.Windows.Controls.Map.MapShapeReaderBase' does not contain a definition for 'Source' and no extension method 'Source' accepting a first argument of type 'Telerik.Windows.Controls.Map.MapShapeReaderBase' could be found (are you missing a using directive or an assembly reference?)
I tried modifying the code to accept the worldUri as a parameter in the new MapShapeReader instantiation call. That doesn't give a compile error, but it doesn't work either!
Help!!!!!!!!!
This is the original code:
Uri worldUri = new Uri(string.Format(ShapeRelativeUriFormat, "world"), UriKind.Absolute);
this.worldLayer.Reader = new MapShapeReader();
this.worldLayer.Reader.Source = worldUri;
We are receiving errors on :
'Telerik.Windows.Controls.Map.MapShapeReaderBase' does not contain a definition for 'Source' and no extension method 'Source' accepting a first argument of type 'Telerik.Windows.Controls.Map.MapShapeReaderBase' could be found (are you missing a using directive or an assembly reference?)
I tried modifying the code to accept the worldUri as a parameter in the new MapShapeReader instantiation call. That doesn't give a compile error, but it doesn't work either!
Help!!!!!!!!!