Hello all,
I've been following the tutorial in ESRI Interactive SDK, where the map URL is hardcoded in the xaml side of SL page.
Now let's say there's a scenario where the map server is different for different users. In such a case, how can I add the map layer into my SL page?
As far as my attempt is concerned, I tried binding the map layer url as such:
<esri:ArcGISTiledMapServiceLayer x:Name="MapLayerUrl" ID="StreetMapLayer" Url="{Binding mapUrl}"/>
Its not working. InitializeComponent() in the constructor receives error from ESRI.ArcGIS.Client, which I'm assumig is expecting an absolute url string.
Any ideas?