|
POST
|
GeoRssLayer sets its Graphic.TimeExtent property using PublishDate and may use the TimeSlider. http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client.Toolkit.DataSources~ESRI.ArcGIS.Client.Toolkit.DataSources.GeoRssLayer.html
... View more
01-16-2011
06:58 PM
|
0
|
0
|
492
|
|
POST
|
You can read about Proxy here: http://help.arcgis.com/en/webapi/silverlight/help/index.html#/Secure_services/016600000022000000/
... View more
01-16-2011
06:46 PM
|
0
|
0
|
3020
|
|
POST
|
Kindly look at this also: http://help.arcgis.com/en/webapi/silverlight/help/index.html#/Working_with_Clustering/016600000008000000/
... View more
01-16-2011
06:41 PM
|
0
|
0
|
1031
|
|
POST
|
To be honest, I don't know how you would update your Geoprocessor parameter from GPString to GPMultiValue. But I do know that the GPString in GPMultiValue will support special characters. The following help document might be useful: http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//00150000000n000000.htm
... View more
01-15-2011
11:29 PM
|
0
|
0
|
1513
|
|
POST
|
You can look at this CustomClusterer sample:http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#CustomClusterer. It shows you how you can turn Clusterer on/off. The ClusterSymbol here defines a template that use graphic Attributes information.
... View more
01-14-2011
08:42 PM
|
0
|
0
|
1031
|
|
POST
|
Have you tried setting the MinimumResolution and MaximumResolution properties? http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Layer~MinimumResolution.html http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Layer~MaximumResolution.html
... View more
01-14-2011
08:31 PM
|
0
|
0
|
717
|
|
POST
|
If you want to select graphics by drawing a rectangle around them, you can use the Editor.Select command. Try the "New Selection" button in this SDK Sample: http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#EditToolsAutoSave. This also works for GraphicsLayer. Note, however that the Symbol you use need to define SelectionStates to be able to distinguish between Selected and Unselected states as in this sample: http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#SelectGraphics. And yes, another way is to use FindGraphicsInHostCoordinates http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.GraphicsLayer~FindGraphicsInHostCoordinates(Rect).html to return you the graphics contained in the rectangle.
... View more
01-14-2011
08:15 PM
|
0
|
0
|
1206
|
|
POST
|
2.1 does not support changing the Symbols used for editing yet.
... View more
01-14-2011
02:44 PM
|
0
|
0
|
695
|
|
POST
|
The application hangs? Can you try to run Fiddler with your app to see which webrequest was giving trouble? Also try to subscribe to the InitializationFailed event.
... View more
01-14-2011
02:43 PM
|
0
|
0
|
508
|
|
POST
|
How about if you use GPMultiValue parameter that contains GPString? Currently, our GPString parameter cannot take special characters. This is a bug that we have yet to fix in our API. If you can avoid using (",'), you can use GPString. If you need to use these, you can use GPMultiValue and hopefully that will be a workaround.
... View more
01-14-2011
02:35 PM
|
0
|
0
|
1513
|
|
POST
|
If you would like to get the graphic based on touch gesture you can do something like:
double tapTolerance = 30;
private void MyMap_MapGesture(object sender, Map.MapGestureEventArgs e)
{
if (e.Gesture == GestureType.Tap)
{
IEnumerable<Graphic> graphics = e.DirectlyOver(tapTolerance, new List<GraphicsLayer>() { layer });
if (graphics != null && graphics.GetEnumerator().MoveNext())
{
Graphic graphic = graphics.First();
}
}
}
http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Map+MapGestureEventArgs~DirectlyOver.html
... View more
01-14-2011
02:24 PM
|
0
|
0
|
1848
|
|
POST
|
It's hard to tell where the problem could be. Are you saying using touch, ToolbarItemClicked eventhandler is not hit, but using mouse it does?
... View more
01-12-2011
04:02 PM
|
0
|
0
|
2197
|
|
POST
|
Thank you for reporting this. We'll try to get it fixed in future release. As of now, I don't know if there is a workaround but I will let you know when I do.
... View more
01-12-2011
03:59 PM
|
0
|
0
|
1513
|
|
POST
|
I'm not sure, I have not created a service but you might want to check this documentation: http://help.arcgis.com/en/arcgisserver/10.0/help/arcgis_server_dotnet_help/index.html#/Authoring_feature_services/009300000021000000/. "Defining a symbology" under Setting up the Map Document.
... View more
01-12-2011
02:32 PM
|
0
|
0
|
1711
|
|
POST
|
I'm sorry I did not understand the question. Are you trying to use Draw (similar to this sample: http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#DrawGraphics) ? And you are trying to set or get the graphic symbol?
... View more
01-12-2011
02:29 PM
|
0
|
0
|
1206
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 4 weeks ago | |
| 1 | 09-11-2025 01:30 PM | |
| 1 | 06-06-2025 10:14 AM | |
| 1 | 03-17-2025 09:47 AM | |
| 1 | 07-24-2024 07:32 AM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|