I am trying to create a Silverlight App based on the Databinding RadMap example.
I am using MS Visual Studio 2010, and created a Silverlight App with a web server. I started out by just trying to recreate the Databinding example from the example code, but when I run it, the loading symbol gets to 100% and just sits there, not loading the map.
I have tried on both FireFox 3.6 and IE8.
I previously, using the same means, successfully created a working version of the Search example.
The huge ExamplesCS_SL solution file, works fine.
I can't figure out what is going wrong. Can anyone help me?
Thanks,
Bryan
I am using MS Visual Studio 2010, and created a Silverlight App with a web server. I started out by just trying to recreate the Databinding example from the example code, but when I run it, the loading symbol gets to 100% and just sits there, not loading the map.
I have tried on both FireFox 3.6 and IE8.
I previously, using the same means, successfully created a working version of the Search example.
The huge ExamplesCS_SL solution file, works fine.
I can't figure out what is going wrong. Can anyone help me?
Thanks,
Bryan
5 Answers, 1 is accepted
0
Hello Bryan,
Unfortunately we are having difficulties reproducing the problem without your code. Could you, please, send to us your solution or another small runnable project illustrating the issue?
Kind regards,
Andrey Murzov
the Telerik team
Unfortunately we are having difficulties reproducing the problem without your code. Could you, please, send to us your solution or another small runnable project illustrating the issue?
Kind regards,
Andrey Murzov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Bryan
Top achievements
Rank 1
answered on 06 Apr 2011, 06:15 PM
Hey Andrey,
I have submitted my solution as an attachment to a support ticket, ID: 411592.
Thanks,
Bryan
I have submitted my solution as an attachment to a support ticket, ID: 411592.
Thanks,
Bryan
0
Hello Bryan,
I'm sorry, but attached zip file contains only one file: SilverlightApplication1.sln and nothing more. Could you try sending the actual files again?
Greetings,
Andrey Murzov
the Telerik team
I'm sorry, but attached zip file contains only one file: SilverlightApplication1.sln and nothing more. Could you try sending the actual files again?
Greetings,
Andrey Murzov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Bryan
Top achievements
Rank 1
answered on 08 Apr 2011, 01:10 PM
Sorry about that Andrey,
I have resubmitted, support ticket ID:412359
Thanks,
Bryan
I have resubmitted, support ticket ID:412359
Thanks,
Bryan
0
Hi Bryan,
I have inspected your application. It did not work because the POICollection and WayPointCollection classes have contained incorrect URIs to resource streams in their Load method. When I update them to the following then application works as expected:
Also I should ask you to use your own Bink Maps key in the VEKey.txt file instead of key which is used for our silverlight examples only. To learn how to obtain a key, please visit the following link:
http://msdn.microsoft.com/en-us/library/ee681900.aspx
Greetings,
Andrey Murzov
the Telerik team
I have inspected your application. It did not work because the POICollection and WayPointCollection classes have contained incorrect URIs to resource streams in their Load method. When I update them to the following then application works as expected:
StreamResourceInfo streamInfo = Application.GetResourceStream(
new
Uri(
"/SilverlightApplication1;component/PointsOfInterest.xml"
, UriKind.RelativeOrAbsolute));
StreamResourceInfo streamInfo = Application.GetResourceStream(
new
Uri(
"/SilverlightApplication1;component/WayPoints.xml"
, UriKind.RelativeOrAbsolute));
Also I should ask you to use your own Bink Maps key in the VEKey.txt file instead of key which is used for our silverlight examples only. To learn how to obtain a key, please visit the following link:
http://msdn.microsoft.com/en-us/library/ee681900.aspx
Greetings,
Andrey Murzov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items