|
POST
|
ArcGIS server 9.3.1 does not support editing of features through the REST endpoint, and neither does v1.1. For that you need ArcGIS Server v10 and ArcGIS Silverlight API v2.0
... View more
10-11-2010
11:54 AM
|
0
|
0
|
837
|
|
POST
|
Take a look at this sample: http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#ToolkitTemplatePickerStyles
... View more
10-11-2010
11:52 AM
|
0
|
0
|
758
|
|
POST
|
The property is read only, but the collection is not. Ie: identifyParams.LayerIDs.Add(1);
... View more
10-11-2010
11:23 AM
|
0
|
0
|
5814
|
|
POST
|
Is your ESRI.ArcGIS.Client.*.dll references pointing to the v2.0 WPF versions? (ie not an older version or the Silverlight version)
... View more
10-11-2010
11:21 AM
|
0
|
0
|
702
|
|
POST
|
Just create a new instance of graphic and add it to the Graphics collection on the featurelayer. If the layer is editable, it will automatically be saved back to the server: var graphic = new Graphic(); graphic.Geometry = new MapPoint(12,34) { SpatialReference = new SpatialReference(4326) }; graphic.Attributes["Name"] = "Lorem Ipsum"; myFeatureLayer.Graphics.Add(graphic);
... View more
10-11-2010
11:19 AM
|
0
|
0
|
1107
|
|
POST
|
Sounds like what you need is MapIt: www.esri.com/mapit
... View more
10-11-2010
10:43 AM
|
0
|
0
|
1596
|
|
POST
|
Could you share the simple code you have? I'd like to see if I can reproduce it. Also what hardware and type of touch screen are you using? What version of WPF? (.NET 3.5 or 4.0?)
... View more
10-11-2010
10:41 AM
|
0
|
0
|
2236
|
|
POST
|
The DataTemplate doesn't have a DataContext either. It's the element that the template gets applied to that has a DataContext. So in other words: Yes you can do this with ControlTemplate too. You can bind to attributes and symbol properties like so (assuming a FontSize property on the symbol class and a "Title" attribute in the graphic): <ControlTemplate> <TextBlock FontSize="{Binding Symbol.FontSize}" Text="{Binding Attributes[Title]}" /> </ControlTemplate>
... View more
10-08-2010
01:55 PM
|
0
|
0
|
433
|
|
POST
|
If you want to add Google Maps you might want to read this blogpost first: http://rexdotnet.blogspot.com/2010/09/use-google-maps-with-arcgis-silverlight.html
... View more
10-08-2010
01:52 PM
|
0
|
0
|
507
|
|
POST
|
If you want to add Google Maps you might want to read this blogpost first: http://rexdotnet.blogspot.com/2010/09/use-google-maps-with-arcgis-silverlight.html
... View more
10-08-2010
01:51 PM
|
0
|
0
|
835
|
|
POST
|
Are you sure this doesn't return null? Symbol = LayoutRoot.FindResource("RedMarkerSymbol") as Symbol
... View more
10-08-2010
11:24 AM
|
0
|
0
|
714
|
|
POST
|
This samples shows how to specify a map projection: http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#DefineMapProjection However note that tiled layers that doesn't match the map's spatial reference will not render. So if you are not using WGS84 of WebMercator, you won't be able to use ArcGIS Online maps.
... View more
10-08-2010
11:22 AM
|
0
|
0
|
863
|
|
POST
|
Take a look at the SymbolDisplay control in the Toolkit.Primivites namespace. It can render a symbol. Put these in a ComboBox and have the user select one of them.
... View more
10-08-2010
11:20 AM
|
0
|
0
|
540
|
|
POST
|
Create a usercontrol you want to show the user with the information fields set (similar to what you would put in a maptip). When the user clicks a row, use the MyMap.MapToScreen() method to figure out where on the screen this geometry is located. Then place the usercontrol on top of the map at this position.
... View more
10-08-2010
10:10 AM
|
0
|
0
|
685
|
|
POST
|
If you can expose this as a GP Tool, you can call it from Silverlight using the Geoprocessing task.
... View more
10-08-2010
10:08 AM
|
0
|
0
|
893
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 05-11-2026 07:05 AM | |
| 2 | 03-19-2026 06:03 PM | |
| 1 | 03-03-2026 04:41 PM | |
| 1 | 02-26-2018 07:53 AM | |
| 1 | 02-26-2018 07:51 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|