|
POST
|
Are you talking about this Print sample? http://help.arcgis.com/en/webapi/silverlight/3.0/samples/start.htm#ExportWebMap. This sample use our Legend control http://help.arcgis.com/en/webapi/silverlight/3.0/samples/start.htm#LegendWithTemplates. The legend displays symbols from layer renderer. If you modify this sample to apply a different renderer to the FeatureLayer, this will be used by Legend control. If you want to get to the service-defined renderer, when the layer is initialized, you can check LayerInfo.Renderer.
... View more
12-14-2011
08:12 AM
|
0
|
0
|
1137
|
|
POST
|
You can edit related table using FeatureLayer. It would be same as FeatureLayer from a feature service, only table consists of features with only attributes (no geometry).
... View more
12-14-2011
08:00 AM
|
0
|
0
|
585
|
|
POST
|
You can turn the sub layer off by excluding its ID in ArcGISDynamicMapServiceLayer.VisibleLayers property and create a FeatureLayer for this sub layer instead so you can control its Opacity.
... View more
12-14-2011
07:57 AM
|
0
|
0
|
632
|
|
POST
|
Sorry I meant to say that changing offsets in SimpleMarkerSymbol is not supported which why I suggested looking into MarkerSymbol instead. The symbol template used for SimpleMarkerSymbol has not changed, we do not apply offset or transforms that can cause the symbol to not center correctly. It has always been:
<ControlTemplate x:Key="SimpleMarkerSymbol_Triangle">
<TextBlock Text="�?�" RenderTransformOrigin="0.5,0.5" FontFamily="Arial" FontSize="{Binding Path=Symbol.Size, Converter={StaticResource multiplicationConverter}, ConverterParameter=1.5, Mode=OneWay}" Foreground="{Binding Symbol.Color}" />
</ControlTemplate>
You are correct that only symbols supported by REST can be serialized for printing. With the exception of TextSymbol, these are the symbols supported for printing: http://help.arcgis.com/en/arcgisserver/10.0/apis/rest/symbol.html
... View more
11-23-2011
07:21 AM
|
0
|
0
|
1295
|
|
POST
|
Thanks for your feedback. Morten is currently on vacation. But I will make sure to pass this request along.
... View more
11-23-2011
06:59 AM
|
0
|
0
|
1009
|
|
POST
|
These threads seem related: http://forums.arcgis.com/threads/21708-Does-arcgis-provide-a-Pan-cursor. http://forums.arcgis.com/threads/8182-Map-Cursors Features in ArcGISDynamicMapServiceLayer do not receive mouse events. You would have to use FeatureLayer to enable this.
... View more
11-23-2011
06:54 AM
|
0
|
0
|
1573
|
|
POST
|
You can call Reshape in code-behind, but drawing the cutter is still interactive.
if(editor.Reshape.CanExecute(null)) // this is true if there are selected features
editor.Reshape.Execute(null); // activates Reshape, you can begin drawing the cutter.
If you already have the cutter, you can use GeometryService to do Reshape.
... View more
11-23-2011
06:47 AM
|
0
|
0
|
1071
|
|
POST
|
This is correct. ArcGIS API for Silverlight only support snapping to vertices. This is a related thread: http://forums.arcgis.com/threads/26296-Snap-to-edges
... View more
11-23-2011
06:40 AM
|
0
|
0
|
461
|
|
POST
|
This seem related from Silverlight forum: http://forums.silverlight.net/t/221342.aspx
... View more
11-23-2011
06:37 AM
|
0
|
0
|
344
|
|
POST
|
This seem related: http://forums.arcgis.com/threads/26836-QueryTask-for-ORACLE-Date-Field and this might also help: http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//00s500000033000000.htm
... View more
11-22-2011
07:57 PM
|
0
|
0
|
749
|
|
POST
|
Kindly take a look at the editing samples in our SDK: http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#EditToolsAutoSave. It might save you from writing code that is already available in the API. You can select multiple features from different FeatureLayers/GraphicsLayers using Editor.Select command. You can also delete selected features using Editor.DeleteSelected. Deleting a feature from feature service requires deleting graphic from FeatureLayer.
... View more
11-22-2011
07:44 PM
|
0
|
0
|
1749
|
|
POST
|
There should not be a problem in 2.2. Here's the SDK sample in 2.2 that use Scalebar:http://help.arcgis.com/en/webapi/silverlight/2.2/samples/start.htm#Scalebar
... View more
11-22-2011
07:38 PM
|
0
|
0
|
3592
|
|
POST
|
You can look at the following SDK sample: http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#Reshape. You might also want to check AutoComplete: http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#AutoComplete The interactive way to reshape or auto complete a polygon would be to use Editor.Reshape or Add command, respectively. http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#EditToolsAutoSave. If AutoSelect is checked or after you have made selections, you can add near the selected feature and auto-complete against the selected feature. You can also reshape selected feature by drawing a polyline cutter.
... View more
11-22-2011
07:31 PM
|
0
|
0
|
1071
|
|
POST
|
OffsetX, OffsetY can be set on a MarkerSymbol (like in this example: http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#CustomSymbols). There are more custom symbols here: http://help.arcgis.com/en/webapi/silverlight/samples/SymbolGalleryWeb/start.htm
... View more
11-22-2011
07:24 PM
|
0
|
0
|
1295
|
|
POST
|
Like Dominique said, working with shapefiles may require custom code on your part. When displaying attributes in TextBox/TextBlock, you can look up localization in Silverlight. Here are some links. http://msdn.microsoft.com/en-us/library/cc838238%28v=vs.95%29.aspx http://timheuer.com/blog/archive/2009/08/26/silverlight-string-localization.aspx http://www.dotnetcurry.com/ShowArticle.aspx?ID=643
... View more
11-22-2011
07:18 PM
|
0
|
0
|
2507
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-10-2026 12:13 PM | |
| 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 |
07-13-2026
09:07 AM
|