|
POST
|
ProxyURL="../../../SilverlightProxy/proxy.ashx" Your issue might be with the proxy relative path. From the print server, this relative path is likely wrong. Try by setting an absolute path (by code if needed)
... View more
10-01-2012
11:30 PM
|
0
|
0
|
673
|
|
POST
|
Now I want the specialSymbol to look like a Red Pin. Hi Miri, You can either create a marker symbol containing one or more paths in order to get a vector representation of your symbol or create a picture marker symbol from an image.
... View more
10-01-2012
01:53 AM
|
0
|
0
|
1589
|
|
POST
|
Maybe a browser cache issue. Try by setting DisableClientCaching (of your query or your layer) to true.
... View more
10-01-2012
01:49 AM
|
0
|
0
|
2121
|
|
POST
|
The ShowCoordiantesBehavior doesn't allow coordiantes projection. But you can write your own control by wiring up the Map.MouseMove event and by projecting and displaying the coordinates in a popup window or in a specific control inside your application.
... View more
10-01-2012
01:48 AM
|
0
|
0
|
876
|
|
POST
|
In my latter version, I changed GetValue, it's now: private static string GetValue(DataGridColumn col, Graphic graphic)
{
if (col is DataGridBoundColumn)
{
var path = (col as DataGridBoundColumn).Binding.Path.Path;
var att = Regex.Replace(path, ".*\\[(.*)\\]", "$1");
return graphic.Attributes[att].ToString();
}
return string.Empty;
} so it should solve your issue.
... View more
09-28-2012
10:12 AM
|
0
|
0
|
13286
|
|
POST
|
Likely a cross domain access security issue. You need to add a ClientAccessPolicy.xml file at the root of your web server. For more info, read this topic Making a Service Available Across Domain Boundaries
... View more
09-28-2012
07:25 AM
|
0
|
0
|
448
|
|
POST
|
The symbology is there from arcgis server 10, so you should have it. Try using OutFields="*", may be the field used for symbolization is missing. Else use fiddler to look at server response, that might give a clue.
... View more
09-28-2012
07:16 AM
|
0
|
0
|
493
|
|
POST
|
This behavior can't be customized. The progress bar counts the responses from the server. If you have only one dynamic layer and one feature layer, only 2 web responses are expected so the progress values can only be 0%, 50% and 100%. When there is a TileLayer in the map, the number of expected responses is greater (one by tile) and so the progress bar is more progressive.
... View more
09-26-2012
11:17 PM
|
0
|
0
|
936
|
|
POST
|
The change the width when the maptip is expanded, you have to style the maptip control. In Blend, right click the control, create a copy of the Template. In the maptip style, change the width value in the storyboard. Something like: <VisualState x:Name="Expanded">
<Storyboard>
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="MapTipData" Storyboard.TargetProperty="Height">
<SplineDoubleKeyFrame KeyTime="00:00:00.5" Value="150" KeySpline="0.3,0 0,1" />
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="MapTipData" Storyboard.TargetProperty="Width">
<SplineDoubleKeyFrame KeyTime="00:00:00.5" Value="300" KeySpline="0.3,0 0,1" />
</DoubleAnimationUsingKeyFrames>
</Storyboard>
</VisualState>
... View more
09-26-2012
11:12 PM
|
0
|
0
|
504
|
|
POST
|
Your question looks related to the Silverlight Viewer. You might get better answer by posting it on the viewer forum.
... View more
09-26-2012
11:09 PM
|
0
|
0
|
481
|
|
POST
|
Your question looks related to the Silverlight Viewer. You might get better answer by posting it on the viewer forum.
... View more
09-26-2012
11:07 PM
|
0
|
0
|
1012
|
|
POST
|
This Silverlight sample might help : http://broux.dominique.free.fr/Silverlight/InteractiveSDK/Default.htm#AutoTimeSliderSample. It's getting the time extent info from the layers in order to set automatically the time slider.
... View more
09-26-2012
04:42 AM
|
0
|
0
|
1143
|
|
POST
|
You can use GetResourceStream to load an Embedded resource. Something like StreamResourceInfo sr = Application.GetResourceStream(new UriString.Format("Torrens;component/Images/PollingPlaces/{0}'", photoName), UriKind.Relative));
BitmapImage bmp = new BitmapImage();
bmp.SetSource(sr.Stream);
... View more
09-26-2012
02:03 AM
|
0
|
0
|
510
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-12-2025 03:01 AM | |
| 1 | 10-14-2025 09:24 AM | |
| 1 | 06-13-2013 09:22 AM | |
| 1 | 04-29-2022 02:21 AM | |
| 1 | 04-29-2022 02:28 AM |
| Online Status |
Offline
|
| Date Last Visited |
10-30-2025
08:06 AM
|