|
POST
|
Currently you can use GraphicsOverlays to show the features (or derivations of them) using Graphics. Basically the workflow is something like this 10.2.7 version but easy to adapt to the current release.
... View more
01-03-2017
04:15 AM
|
0
|
0
|
1313
|
|
POST
|
It's pretty hard to say without knowing what you are doing. Could you verify that you are specifying Maps SpatialReference when you create it. var myMap = new Map(SpatialReferences.Wgs84);
... View more
01-03-2017
04:10 AM
|
0
|
0
|
992
|
|
POST
|
You could try to use TileCache and see if that makes any difference to you. Btw, I cannot see the code how you are using the TPK // Add basemaps to the scene
var tileCacheSmallScale = new TileCache(pathToTheTPKFile);
var tileLayerSmallScale = new ArcGISTiledLayer(tileCacheSmallScale);
var basemap = new Basemap();
basemap.BaseLayers.Add(tileLayer); Make sure that the TPK file is where you are looking it from. I usually use android device manager to check if it is there and the size is what I'm expecting. Does the basemap and the tile layer inside it loaded correctly?
... View more
01-03-2017
04:00 AM
|
0
|
0
|
2510
|
|
POST
|
Currently we don't have easy way to provide such a progress. As chad.yoder@nwg mentioned, you can get the messages and events from the job and construct estimation yourself. This is something that we are planning to improve for next release.
... View more
01-03-2017
03:48 AM
|
0
|
2
|
1206
|
|
POST
|
What platform you are using? I don't have touch device at the moment for testing but I'll have a look to this later this week.
... View more
01-03-2017
03:42 AM
|
0
|
1
|
2021
|
|
POST
|
Could you provide me a simple reproducer and I'll have a look. You can send it to akajanus@esri.com. Thanks!
... View more
01-03-2017
03:40 AM
|
0
|
0
|
1577
|
|
POST
|
Something like this
var overlay = MyMapView.GraphicsOverlays["areaOfInterestOverlay"];
if (overlay.Graphics.Count == 0) return;
var basemap = MyMapView.Map.Basemap.BaseLayers.OfType<ArcGISTiledLayer>().First();
var lods = basemap.ServiceInfo.TileInfo.LevelsOfDetail;
ExportTileCacheTask estimateTilesTask = null;
ExportTileCacheJob job = null;
try
{
estimateTilesTask = await ExportTileCacheTask.CreateAsync(basemap.Source, Authenticat ionManager.Current.Credentials.FirstOrDefault());
var parameters = await estimateTilesTask.CreateDefaultExportTileCacheParametersAsync( overlay.Graphics.First().Geometry.Extent, lods[0].Scale, lods[10].Scale);
job = estimateTilesTask.ExportTileCache(parameters, @"yourpathtothetpk.tpk");
var result = await job.GetResultAsync();
//await result.LoadAsync();
// Do something with loaded tile cache
}
catch (Exception ex)
{
Debug.WriteLine(ex.ToString());
}
foreach (var joMessage in job.Messages)
{
Debug.WriteLine(joMessage.Message);
}
... View more
01-03-2017
03:37 AM
|
2
|
0
|
1042
|
|
POST
|
Can you provide me a simple solution with step by step guide how to run it? You can send it to akajanus@esri.com. Thanks.
... View more
01-03-2017
02:33 AM
|
0
|
0
|
2318
|
|
POST
|
Can you share Geoprocessing tasks definition (parameters etc..) and can you verify that the order you get the parameters in the script is / isn't the same?
... View more
01-03-2017
01:59 AM
|
0
|
0
|
3193
|
|
POST
|
Ah, that makes sense. I probably would approach with following flow: - When original geodatabase is downloaded, make a copy of it xxxxTemporary.geodatabase - When working with new plan commit changes to the that geodatabase, this will give you support for query and other FeatureTable functionality such as templates. - When you are committing features / saving the plan just get all the features from the temporary geodatabase, copy to the real one and clear the temporary one. - If the plan is not committed, then you can clear all features from the geodatabase - This would also give you option to make `continue from last plan` if needed Another good point with this would be that you can be sure that the features are created with correct schema and they are visualized correctly because the features would get the rendering directly from the geodatabase definitions. This might come in handy especially if you need to do any changes in the future to the underlying attributes / symbology. You could also think that you would create separate local geodatabase (copy of the original / empty) for every plan that they start to do and when finish, just delete it. Does that make any sense? Happy holidays and new year!
... View more
12-23-2016
01:22 AM
|
0
|
0
|
1664
|
|
POST
|
I'm not sure what is the support situation with MFC and WPF based ArcGIS Runtime integration but it has never been tested at least. I'll check out what is the situation with that and get back to you.
... View more
12-22-2016
08:41 AM
|
0
|
1
|
2318
|
|
POST
|
Ah, you are using 10.2.X api. Could you share your code with me (akajanus@esri.com). I can give you much better answer after looking into the code and a service rest endpoint. Note that we don't support SOAP based services in ArcGIS Runtime geoprocessing, the service endpoint needs to be the REST (JSON) based endpoint from a geoprocessing service.
... View more
12-22-2016
05:55 AM
|
1
|
1
|
2395
|
|
POST
|
You can find the urls from Imagery with labels basemap item. Seems to be https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer and https://services.arcgisonline.com/ArcGIS/rest/services/Reference/World_Boundaries_and_Places/MapServer
... View more
12-22-2016
05:52 AM
|
0
|
0
|
1165
|
|
POST
|
At the moment you cannot `delay` the add to the local geodatabase. Could you describe the workflow a bit more in detail? There are methods to find out what has been added to the FeatureTable after last sync, you might need to use FeatureCollectionTable / GraphicsOverlays / temp Geodataabse to save that information temporarily or do something else.
... View more
12-22-2016
05:12 AM
|
0
|
2
|
1664
|
|
POST
|
Hi, It all depends what services you are using in your application. Could you describe a bit more which services you are using?
... View more
12-22-2016
04:58 AM
|
0
|
3
|
1165
|
| 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
|