|
POST
|
Kindly look at the SDK sample for MaintainExtentBehavior http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#MaintainExtentBehavior The error message in your other post seem related to this. In both cases you were using "x:Uid". Have you tried compiling your app without this?
... View more
01-08-2011
07:14 PM
|
0
|
0
|
1957
|
|
POST
|
Are you using v2.0 or higher? If so, you can reference esri assemblies this way:
xmlns:esri="http://schemas.esri.com/arcgis/client/2009"
Have you looked at the SDK sample for MeasureAction? http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#UtilityActions I'm not sure why you use x:Uid instead of x:Name but the error message does not seem related to that. Maybe try updating your xaml namespace definition (as above) first.
... View more
01-08-2011
07:11 PM
|
0
|
0
|
1566
|
|
POST
|
I do not think this is possible. The FlareClusterer uses a defined template for FlareSymbol and FlareOutSymbol. You can update the symbol's FillColor but this will be applied to all nodes.
... View more
01-04-2011
11:11 AM
|
0
|
0
|
546
|
|
POST
|
You may visit the following links: http://help.arcgis.com/en/webapi/silverlight/help/index.html#/Getting_Started_in_Expression_Blend/016600000013000000/ http://weblogs.asp.net/scottgu/pages/silverlight-tutorial-part-5-using-the-listbox-and-databinding-to-display-list-data.aspx http://expression.microsoft.com/en-us/ee307362.aspx http://www.silverlight.net/learn/quickstarts/bindingtocontrols/
... View more
01-04-2011
09:46 AM
|
0
|
0
|
1674
|
|
POST
|
To set your Map's MinimumResolution:
<esri:Map x:Name="MyMap" MinimumResolution="0.0000107288360595703" MaximumResolution="0.3515625">
InitialExtent is read-only and is a value reported by the service. Therefore, you cannot change this property. http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.ArcGISTiledMapServiceLayer~InitialExtent.html
... View more
01-04-2011
09:20 AM
|
0
|
0
|
1419
|
|
POST
|
Please add reference to .NET Assembly "System.Windows.Controls" to resolve the first error. Try to build the project again, if you still find that some of your controls are still not declared, maybe the XAML and the code-behind do not have a matching namespace.
... View more
01-04-2011
09:12 AM
|
0
|
0
|
701
|
|
POST
|
I'm not sure if this discusses your issue: http://efreedom.com/Question/1-3425974/Use-Machine-Names-WCF-Services-REST-Windows-Authentication Do you also use windows authentication? Can you also see if this is related? http://forums.arcgis.com/threads/3240-cannot-connect-to-rest-endpoint I have not seen the same issue reported anywhere yet but the FAQ page here might help. http://help.arcgis.com/en/webapi/silverlight/help/index.html#//016600000009000000.htm
... View more
12-21-2010
04:46 PM
|
0
|
0
|
939
|
|
POST
|
If you are using WPF:
GeneralTransform generalTransform = MyMap.TransformToVisual(Application.Current.MainWindow);
System.Windows.Point transformScreenPnt = generalTransform.Transform(screenPnt);
IEnumerable<Graphic> selected =
parcelGraphicsLayer.FindGraphicsInHostCoordinates(transformScreenPnt);
... View more
12-21-2010
10:49 AM
|
0
|
0
|
2460
|
|
POST
|
Sure that should be possible too. You can create a RecordNavigator control that can navigate through the related records, you can update the FeatureDataForm's GraphicSource so that it may point to the correct record in your table.
... View more
12-21-2010
09:24 AM
|
0
|
0
|
959
|
|
POST
|
The MouseLeftButtonDown event used for selecting graphics, need to touch the actual graphic. If you want to apply tolerance to the selection. You can use FindGraphicsInHostCoordinates such as in this sample http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#InfoWindowSimple (see the MouseClick event).
... View more
12-21-2010
09:03 AM
|
0
|
0
|
565
|
|
POST
|
How about using FindGraphicsInHostCoordinates? You can look at the MouseClick event handler in this sample: http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#InfoWindowSimple
... View more
12-20-2010
08:28 AM
|
0
|
0
|
2460
|
|
POST
|
You can try this SDK sample http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#SpatialQuery. It uses QueryTask based on the geometry (i.e. MapPoint if DrawMode is Point). You can modify this sample, you will not need a Draw object. You can obtain MapPoint through any of the mouse events.
System.Windows.Point screenPoint = args.GetPosition(MyMap);
ESRI.ArcGIS.Client.Geometry.MapPoint mapPoint = MyMap.ScreenToMap(screenPoint);
... View more
12-17-2010
11:34 AM
|
0
|
0
|
2460
|
|
POST
|
This SDK sample uses FeatureDataForm http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#ToolkitFeatureDataForm. When you click a feature notice the attribute "Status" is a CodedValueDomain.
... View more
12-17-2010
11:26 AM
|
0
|
0
|
1054
|
|
POST
|
I think that question will be best answered by Server REST API team http://forums.arcgis.com/forums/11-ArcGIS-Server-REST-API 🙂
... View more
12-17-2010
10:57 AM
|
0
|
0
|
493
|
|
POST
|
If you google this error message, you'll find that some Silverlight developers have experienced this when they miss to define namespace. http://silverlightedweb.blogspot.com/2010/04/parser-internal-error-object-writer.html
... View more
12-17-2010
02:06 AM
|
0
|
0
|
963
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 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
|