With a Silverlight Viewer application, is there a way to send someone a link to an application so that when they click on the link, it takes them to a particular point or location or map extent (similar to bookmarks)? In otherwords, is there a way to embed the location or map extent in the URL hyperlink to zoom to that map extent? We would like to be able to send someone a link to our viewer application that pulls up a particular spot on the map for review purposes. We won't know the spots ahead of time so we would need to be able to do this on the fly.
"This can be done programmatically in a behavior if you include the extent (or other information) in the URL???s query string. In OnAttached of the behavior, get the query string from HtmlPage.Document.QueryString. Then parse out whatever information is expected and manipulate the map (MapApplication.Current.Map) accordingly."
With a Silverlight Viewer application, is there a way to send someone a link to an application so that when they click on the link, it takes them to a particular point or location or map extent (similar to bookmarks)?
This functionality is not currently possible OOTB, but may be possible with some custom Silverlight API development.
"This can be done programmatically in a behavior if you include the extent (or other information) in the URL???s query string. In OnAttached of the behavior, get the query string from HtmlPage.Document.QueryString. Then parse out whatever information is expected and manipulate the map (MapApplication.Current.Map) accordingly."