|
POST
|
Please have a look at this sample Service feature table (cache)—ArcGIS Runtime SDK for .NET Samples | ArcGIS for Developers for the service feature table usage, then you can find more information about editing from Edit features—ArcGIS Runtime SDK for .NET (WPF) | ArcGIS for Developers topic. There is also Edit and sync features—ArcGIS Runtime SDK for .NET Samples | ArcGIS for Developers sample that shows how to do edits on local table, it's basically the same in ServiceFeatureTable but you have to explicitly call ServiceFeatureTable.ApplyEditsAsync Method to save your changes to the service. Hope that helps.
... View more
12-22-2017
01:17 AM
|
0
|
1
|
1457
|
|
POST
|
My assumption is that you are trying to use 10.2.X sample code with 100.X runtime install and since the APIs are different, you cannot find the correct layers. See 100.X samples and documentation for help ArcGIS Runtime SDK for .NET | ArcGIS for Developers ArcGIS tiled layer (URL)—ArcGIS Runtime SDK for .NET Samples | ArcGIS for Developers
... View more
12-12-2017
01:33 AM
|
2
|
1
|
1319
|
|
POST
|
Support for exporting vtpks and style item resources is going to available on 100.2 release. You can use `ExportVectorTilesTask` to work directly with vector tile layers exposed as portal items (access to tiles and custom style resources) or working directly with the service endpoints for tiles (but you don't have access to the custom styles this way). Offline you can use one tile cache and create new layers from it using different styles.
... View more
12-08-2017
03:29 AM
|
1
|
0
|
3178
|
|
POST
|
You should use GeoView.NavigationCompleted Event to get the viewpoint out and then save that. Then you can use any navigation methods with the viewpoint to invoke the navigation.
... View more
12-05-2017
06:49 AM
|
0
|
3
|
1418
|
|
POST
|
Can you also make sure that you try the following code after the offline map has been created. var featureLayer = MyMapView.Map.OperationalLayers.First() as FeatureLayer;
var featureTable = featureLayer.FeatureTable;
// Check if we can syncronize the changes back to the service
// if not, then raise message to say that edits cannot be synced
var capabilties = (featureTable as GeodatabaseFeatureTable).LayerInfo.Capabilities;
if (!capabilties.SupportsCreate || !capabilties.SupportsDelete ||
!capabilties.SupportsUpdate || !capabilties.SupportsSync)
{
MessageBox.Show("Features cannot be syncronized back to the service.", "Service doesn't support edits on sync.");
}
... View more
11-29-2017
03:38 AM
|
0
|
1
|
477
|
|
POST
|
I think I should be a bit more specific here. I'm having a look at the services that were reported as part of the support issue.
... View more
11-28-2017
09:44 AM
|
0
|
4
|
2167
|
|
POST
|
I cannot see Delete operation enabled for the service that fails. This might have something to do with the issue. "capabilities" : "Create,Query,Update,Editing,Sync"
... View more
11-28-2017
09:37 AM
|
0
|
5
|
2167
|
|
POST
|
EDITED Hi Jerry, thanks for the link. Could you verify that all the services that you use have all required capabilities enabled? Editable data—If clients will edit the data when offline and synchronize changes with the feature service when they have connectivity, set the CREATE, DELETE, QUERY, SYNC, and UPDATE capabilities on the feature service. Note that you must grant all of the editing capabilities.
... View more
11-28-2017
09:13 AM
|
0
|
7
|
2167
|
|
POST
|
Sorry for delayed anser here. I have verified that we have an issue in some cases when using `OfflineMapSyncTask` with a `OfflineMapTask` where the map contains layers with multiple SRs. Interestingly some of them work and some doesn't so we keep investigating this issue.
... View more
11-28-2017
07:20 AM
|
0
|
9
|
2167
|
|
POST
|
Interesting. Could you provide a bit more details about your setup? - What is the spatial reference in your basemap in the WebMap? - What is the spatial reference in the services that you are using? - Which version of the ArcGIS Enterprise you're using? - How did you take the map offline? Using OfflineMapTask or using GeodatabaseSyncTask/ExportTileCacheTask? - What is the spatial reference of the Map when you open the WebMap in the client? - What is the spatial reference of the Map when you open the offline map in the client? - When you get the results from the OfflineMapSyncTask, is there any errors reported in the results? - What messages are written to the job.Messages when you run the sync?
... View more
11-09-2017
01:22 AM
|
0
|
11
|
2167
|
|
POST
|
In next release, we are introducing preplanned offline workflow where you can create your offline maps and data on the server and then use that framework to update your offline maps. This is one way that you can update all of you data packages then you would need to pull those offline. This might work well in your use case.
... View more
10-24-2017
02:24 AM
|
0
|
2
|
1431
|
|
POST
|
At the moment you have either to use OfflineMapSyncTask Class for Feature layers in bulk or work directly with individual layers with GeodatabaseSyncTask Class or ExportTileCacheTask Class. There is no way to refresh the data that includes all the different layer types since we don't know if there has anything changes in the tile services and there is no support in the platform to report this at the moment. One option is just to re-create the area when you need to refresh the content.
... View more
10-21-2017
09:53 AM
|
0
|
3
|
1431
|
|
POST
|
You can use Geodatabase.Close Method to close the geodatabase so all the locks are released.
... View more
10-19-2017
10:56 AM
|
1
|
2
|
2271
|
|
POST
|
How do you create the mmpk file? This is what I see when using one created through OfflineMapTask.
... View more
10-03-2017
06:01 AM
|
0
|
0
|
642
|
| 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
|