|
POST
|
Can you see runtime folder under your bin folder? This should contain all the needed libraries to work with runtime and if it missing, runtime wont work.
... View more
12-22-2016
04:53 AM
|
1
|
0
|
2323
|
|
POST
|
It works similar manner in 100.0. Have a look to https://developers.arcgis.com/net/latest/wpf/sample-code/displaydevicelocation.htm and https://developers.arcgis.com/net/latest/wpf/api-reference//html/N_Esri_ArcGISRuntime_Location.htm
... View more
12-22-2016
04:50 AM
|
0
|
1
|
1651
|
|
POST
|
You can hook into JobChanged event to handle different status changes but normally you would just call job.GetResultAsync and after that is completed you get the results from the analysis. // Create job that communicates with the server
var job = geoprocessingTask.CreateJob(parameters);
// Hook into changed event and log messages
job.JobChanged += (s, e) =>
{
if (job.Status == Esri.ArcGISRuntime.Tasks.JobStatus.Succeeded)
{
// Do stuff
}
Debug.WriteLine($"Geoprocessing job: {job.Messages.Last().Message}");
};
// Execute geoprocessing and wait results
var results = await job.GetResultAsync();
... View more
12-19-2016
04:03 AM
|
0
|
3
|
2400
|
|
POST
|
Hi, Could you describe what is the exact issue that you are running with? Which SDK version you are using and are you using nuget / install approach?
... View more
12-12-2016
05:30 AM
|
0
|
0
|
3434
|
|
POST
|
Hi, Holding event is touch only on all platforms. If you want to have enable holding for mouse then you have to add logic directly to mouse events to the view you are working with.
... View more
12-02-2016
05:08 AM
|
0
|
1
|
911
|
|
POST
|
That is correct. Unfortunately there are technical limitations that prevents us to deliver the API to PCL.
... View more
11-25-2016
01:32 AM
|
0
|
1
|
3183
|
|
POST
|
Looks like it has something to do with FeatureLayers/FeatureTables dispose. I assume that you are seeing this either when you are removing FeatureLayers/Tables from a map or closing an application. It's hard to say why this is occurring or what is the real cause.
... View more
10-19-2016
02:03 AM
|
0
|
0
|
817
|
|
POST
|
Many things depends on what kind of drawings you need to write and how the hit test is related to that. We don't have examples on about custom drawings on top of the map approach but I know that there are customers that have implemented that so it is doable. For picture markers and overlay you can find some tips from https://www.arcgis.com/home/item.html?id=71e82397445a47629e45f15161ca4761
... View more
10-17-2016
02:59 AM
|
0
|
5
|
2480
|
|
POST
|
At the moment we don't provide integration between wpf drawings and runtime out of the box so your options are - Use existing graphic symbols (picture markers, simple markers, composite markers, CIM etc...) - Write your symbols in XAML and transform that to picture and use picture markers. Get's full map support. Works only for points. - Use map overlays instead graphics. Not as performant and doesn't support hit testing out of the box. - Draw your graphics on top of the map and integrate that with the map interactions. Since you don't want to use picture markers, you can try to use overlays or write your own drawings on top of the map (using canvas or similar) and then write integration between that and map view. You need to make sure that you respect the spatial reference of the map with your drawings.
... View more
10-17-2016
01:33 AM
|
0
|
7
|
2480
|
|
POST
|
Also you should update to 10.2.7 since we did several fixes that were related to these kind of issues. I cannot remember exactly what issues were fixed but you should see much stable runtime with that.
... View more
10-04-2016
06:59 AM
|
1
|
2
|
2459
|
|
POST
|
Hi Mike, Note that VDIs (such as Citrix) are currently (10.2.X product family) supported for development and testing purposes but not for deployment. We are investigating how we can technically and commercially certify and support deployments in VDI environments. Mean while, please contact Rex Hansen (rhansen@esri.com) to discuss how we can help you. Cheers, Antti
... View more
10-04-2016
06:40 AM
|
0
|
4
|
2459
|
|
POST
|
Unfortunately I cannot reproduce this. I ran the application maybe 50 times. I get the basemap loaded everytime even though sometimes it takes a bit longer than other times. In this case, we are talking about some seconds but the tiles comes down even in high network pressure. Make sure that you have a hook on MapView.LayerLoaded and make sure that there are no errors there. Network might be one player in the game but at least for me, everything seem to work just fine. Do you have any corporate firewalls etc that might be part of the problem? Try to reproduce the issue while running a tool like Fiddler to see if you can see any errors / not returned tiles there and share the logs when you get the issue visible.
... View more
10-03-2016
06:58 AM
|
0
|
1
|
3765
|
|
POST
|
Hi, Have you checked if there are any errors when the layer is loaded?
... View more
09-30-2016
04:05 AM
|
0
|
5
|
3765
|
|
POST
|
You can find public information about the support / release cycle from here. Can you make sure that all the issues / bug that your users have are reported to us through the support channels.
... View more
09-29-2016
08:49 AM
|
1
|
1
|
1229
|
| 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
|