|
POST
|
Sure, you can modify this part of XAML-code (under Resources)
<common:HierarchicalDataTemplate x:Key="TreeViewItemTemplate">
<StackPanel Orientation="Horizontal">
<Ellipse Fill="Transparent" Height="6" Width="6" StrokeThickness="2" Stroke="Black" Margin="0,0,10,0"/>
<TextBlock Text="{Binding Attributes[OBJECTID]}" FontWeight="Bold" HorizontalAlignment="Left" FontSize="10"/>
</StackPanel>
</common:HierarchicalDataTemplate>
... View more
03-13-2012
12:22 PM
|
0
|
0
|
448
|
|
POST
|
v2.4 should be able to work with 10.1 Server, except you cannot take advantage of 10.1 features (i.e. Print, GenerateRenderer, DynamicLayer, M and Z support, etc.). What was your where clause like? I can test to see if this is a bug in the client API. I just know about one issue: GPDate in 10.1 expecting a different JSON, it was not backward compatible with v9.31. I believe 10.1 Pre-Release or Final will have this fix.
... View more
03-02-2012
12:22 PM
|
0
|
0
|
789
|
|
POST
|
This is currently not supported. This marker symbol is not exposed in the API and therefore cannot be customized.
... View more
03-02-2012
08:45 AM
|
0
|
0
|
566
|
|
POST
|
No problem. Thanks for the follow-up. If the issue persists again, maybe you can submit to support and/or post also on server forum, or share the service so we can try here too.
... View more
03-02-2012
08:40 AM
|
0
|
0
|
2593
|
|
POST
|
Reading back to your question, I think what you want to do is AutoComplete against existing features? If yes, you can try this sample: http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#EditToolsExplicitSave. Check AutoSelect and AutoComplete, before you add a Polygon that will overlap existing features. After adding the feature, you will see by selecting (using Select) or moving it (using EditVertices), that it completed the draw against neighboring features. The same properties AutoComplete and AutoSelect are available in EditorWidget and TemplatePicker.
... View more
03-02-2012
08:35 AM
|
0
|
0
|
1272
|
|
POST
|
Once you have clientaccesspolicy in place, the code looks like this: You can subscribe to StatusUpdated and\or JobCompleted to see JobInfo. GPString need to include the parameter name "Input" and the value, in this case the string you want to write to file.
var geoprocessorTask = new Geoprocessor("http://gis.mustangeng.com/ArcGIS/rest/services/Geoprocessing/gpServiceTest/GPServer/gpService");
geoprocessorTask.StatusUpdated += (s, e) =>
{
MessageBox.Show(string.Format("StatusUpdated \nID: {0}\nStatus: {1}", e.JobInfo.JobId, e.JobInfo.JobStatus));
};
geoprocessorTask.JobCompleted += (s, e) =>
{
MessageBox.Show(string.Format("JobCompleted \nID: {0}\nStatus: {1}", e.JobInfo.JobId, e.JobInfo.JobStatus));
};
var gpParameters = new List<GPParameter>();
gpParameters.Add(new GPString("Input", "http://mywebsite.com/ArcGIS/rest/services/Geoprocessing/gpServiceTest/GPServer/gpService/submitJob?Input=WOWee"));
geoprocessorTask.SubmitJobAsync(gpParameters);
... View more
03-02-2012
08:30 AM
|
0
|
0
|
881
|
|
POST
|
I just tried it with a feature service that has "Hollow style" for Fill Symbol. REST end point defines the symbol as this Symbol: Style: esriSFSSolid Color: [0, 0, 0, 0] Outline: Style: esriSLSSolid Color: [110, 110, 110, 255] Width: 1 Kindly see attached map with EditorWidget (I did not complete the draw yet and the fill was still transparent).
... View more
03-02-2012
08:17 AM
|
0
|
0
|
1718
|
|
POST
|
What are you trying to accomplish with Refresh() anyway? Every time the map extent changes, WMS layer will try to re-draw using GetUrl().
... View more
03-01-2012
04:37 PM
|
0
|
0
|
1449
|
|
POST
|
You can define your Editor this way: <esri:Editor x:Key="MyEditor"
Map="{Binding ElementName=MyMap}" SelectionMode="Point"
GeometryServiceUrl="http://tasks.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer" /> Both GraphicsLayer and FeatureLayer support this type of SelectionMode.
... View more
03-01-2012
04:32 PM
|
0
|
0
|
486
|
|
POST
|
The features on your map are rendered with transparent fill but the EditorWidget.TemplatePicker.Editor.Add draws with solid fill? That does not seem right because Editor.Add relies on FeatureLayer.Renderer.GetSymbol() and use this to set Draw.FillSymbol.
... View more
03-01-2012
04:28 PM
|
0
|
0
|
1718
|
|
POST
|
Kindly use the beta forum for v3.0 and 10.1 specific questions: https://betacommunity.esri.com/community/notice/resource.html?r={D0FF1C13-907E-4756-AE7A-D9540AC3A9C3}&ref=/home.html. There is a forum thread about limitations on GraphicsLayer. This is supported in v3.0 Beta 2 through PrintTask.
... View more
02-28-2012
06:50 AM
|
0
|
0
|
582
|
|
POST
|
What is your FeatureLayer.Mode? If it is OnDemand, FeatureLayer.Graphics get populated after extent change, which means your layer's FullExtent would be similar to your Map's current extent. If it is SelectionOnly, layer's FullExtent will be that of selected features only. If it is SnapShot, you can expect that after FeatureLayer.UpdateCompleted event, layer's FullExtent will be union of extent of all its graphics.
... View more
02-28-2012
06:40 AM
|
0
|
0
|
795
|
|
POST
|
MapTip looks up graphic.Attributes. When do you add attributes? It should only be after then that the maptip will show values. Otherwise, Binding cannot resolve since attributes are empty.
... View more
02-28-2012
06:37 AM
|
0
|
0
|
593
|
|
POST
|
You can run Fiddler to see what parameters your app has for Identify and use them when you go to the IdentifyTask URL: http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Demographics/ESRI_Census_USA/MapServer/identify.
... View more
02-28-2012
06:30 AM
|
0
|
0
|
2232
|
|
POST
|
I would like to document this too but we don't have an actual repro case. Do you mind sending code snippets and/or steps to reproduce? I understand the same code works for less complex geometry. Have you tried using sample server GP? I wanted to check if this issue had been fixed in v2.4. Thank you for your patience. Alternatively, you can also submit bug report to tech support.
... View more
02-28-2012
06:23 AM
|
0
|
0
|
1044
|
| 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
|