|
POST
|
So you cannot use Fiddler or other tools to check it? I would be interested what traffic is going on after you start sync. That would be easiest way to see what's going on and in what point the error is thrown. Does this error occur after progress is called couple times or does it come back to that right away?
... View more
11-12-2014
02:51 AM
|
0
|
7
|
2383
|
|
POST
|
Eugen, have you checked the DisplayProperties sample on ArcGIS Runtime for .NET Samples? Edit: You should be able just to set values to HydrographicS52DisplayProperties.Default instance and those should be reflected to the map. If you see issues with this, could you provide a repro application so I could have a look? In future, please use ArcGIS Runtime SDK for .NET place for .NET specific questions.
... View more
11-12-2014
02:20 AM
|
0
|
8
|
2130
|
|
POST
|
What do you mean by unknown image in this context? You mean that you get some image from SymbolDictionary but it's incorrect?
... View more
11-12-2014
02:15 AM
|
0
|
6
|
2365
|
|
POST
|
What DataContext you are using here? Are you using Editor.AddVertex command? If you have map in the same view, try to use elementName binding to the myMapView.Editor.AddVertex and then bind normally to your command parameter that is coming from DataContext.
... View more
11-12-2014
01:52 AM
|
0
|
11
|
3226
|
|
POST
|
Could you share a repro application for this that I could have a look? Cheers, Antti
... View more
11-12-2014
01:47 AM
|
0
|
5
|
1611
|
|
POST
|
Can you see what JSON is returned from the server and if that includes the error? If it returned, then we can most likely do something about reporting it back to the user.
... View more
11-12-2014
01:44 AM
|
0
|
9
|
2383
|
|
POST
|
We aren't doing anything special concerning event bubbling so Tapped is bubbled all the way if it's not marked handled and eventually hits the MapView.
... View more
11-11-2014
01:33 AM
|
0
|
0
|
2479
|
|
POST
|
You should be able to do something like this (store / phone)
<esri:MapView.Overlays>
<esri:OverlayItemsControl>
<Grid x:Name="overlay" esri:MapView.ViewOverlayAnchor="{Binding}"
Width="400" Height="400">
<Button Content="Click me!"
Tapped="Button_Tapped"
></Button>
</Grid>
</esri:OverlayItemsControl>
</esri:MapView.Overlays>
private void Button_Tapped(object sender, TappedRoutedEventArgs e)
{
// stuff
e.Handled = true;
}
Could you describe what events you are using and which platform?
... View more
11-10-2014
09:49 AM
|
1
|
2
|
2479
|
|
POST
|
Have you noticed that you can also read Shapefiles as a features using FeatureLayer and ShapefileFeatureTable?
... View more
11-10-2014
08:47 AM
|
0
|
1
|
2110
|
|
POST
|
I would be interested to hear more about this use case. If you have time, could you write down use case, reason behind the algorithm and what kind of outcome you are expecting / needing and mail to me? You can see my email address from my profile. cheers, Antti
... View more
11-10-2014
02:36 AM
|
0
|
2
|
1665
|
|
POST
|
You should be using FeatureService endpoint with ServiceFeatureTable and not DynamicLayer. If you're working with dynamic layers, you can use ArcGISDynamicMapServiceLayer, you can create labeling into the service you are using. If I execute a query against dynamic layer endpoint, I get all request Attributes so I cannot reproduce this issue. Can you create a reproducer for this so i can give a look?
... View more
11-10-2014
02:33 AM
|
0
|
6
|
2110
|
|
POST
|
You can provide IProgress<GeometryEditStatus> for the Editor when requesting the geometry and do stuff in the progress handler.
private async Task RequestFreehand()
{
try
{
var progress = new Progress<GeometryEditStatus>();
progress.ProgressChanged += progress_ProgressChanged;
var geometry = await MyMapView.Editor.RequestShapeAsync(DrawShape.Freehand, null, progress) as Polyline;
progress.ProgressChanged -= progress_ProgressChanged;
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
void progress_ProgressChanged(object sender, GeometryEditStatus e)
{
if (e.GeometryEditAction == GeometryEditAction.AddedVertex)
{
// Stuff
}
}
Hope this helps. I'm a bit curious that what kind of use case you have so if you can, could you describe what you are going to do and why when the vertex is added?
... View more
11-07-2014
07:01 AM
|
0
|
4
|
1665
|
|
POST
|
Thanks for posting this. This is currently by design (due mixed-spatialreference support / performance reasons) but we are looking into it.
... View more
11-06-2014
05:44 AM
|
0
|
0
|
680
|
|
POST
|
You can use RequestPointAsync to get point.
var geometry = await editor.RequestPointAsync();
You can handle point case by replacing it and in with other types, edit it.
if (feature.Geometry.GeometryType == GeometryType.Point)
geometry = await editor.RequestPointAsync(); // cannot "edit" points, replace it with the new one
else
geometry = await editor.EditGeometryAsync(feature.Geometry); // edit geometry
... View more
11-04-2014
05:12 AM
|
0
|
3
|
3206
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-12-2014 03:52 AM | |
| 1 | 08-27-2015 03:47 AM | |
| 1 | 12-08-2014 09:58 AM | |
| 1 | 05-05-2015 10:19 AM | |
| 1 | 07-30-2015 08:43 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|