|
POST
|
Hi Uma, I am testing ArcGIS Pro 2.3 Beta and new style does not work on it. It worked fine In previous version (2.2) Are changes in using new Esri_ListBoxPanelIndicator style?
... View more
12-07-2018
04:07 AM
|
0
|
2
|
6903
|
|
POST
|
Override modifier is required to extend or modify the abstract or virtual implementation of an inherited method, property, indexer, or event. ArcGIS Pro knows when you press Add-in button it needs to call OnClick method which you override for each Add-in button. You need to insert call of your BuildEnvelopeGeometry method for example at the end of OnClick method, like BuildEnvelopeGeometry();
... View more
12-06-2018
10:53 PM
|
0
|
0
|
1651
|
|
POST
|
Hi Joshua, There is no calling of BuildEnvelopeGeometry in your code.
... View more
12-05-2018
10:57 PM
|
0
|
2
|
4358
|
|
POST
|
Hi Jaewon, Serialize your datatable to csv file and use it as parameter for geoprocessing
... View more
12-05-2018
06:53 AM
|
1
|
4
|
3158
|
|
POST
|
Change line: selectionEnvelope = geo1.Extent.Expand(1.1, 1.1, true); to: selectionEnvelope = geo1.Extent.Expand(2, 2, true);
... View more
12-05-2018
06:43 AM
|
2
|
4
|
4358
|
|
POST
|
Add-In Manager uninstalls your *.esriAddinX files content. This means deletes content files from Add-ins folder. So you need to find in explorer where is located your original *.esriAddinX files and double click on them. Standalone Add-in manager will ask you to install Add-ins. *.esriAddinX is the zip file. You can examine content by renaming file extension to zip.
... View more
11-29-2018
07:14 AM
|
0
|
5
|
3995
|
|
POST
|
For GP process logging I use GPExecuteToolFlags.AddToHistory flag. After executing geoprocessing task I can check the status. In ArcGIS Pro 2.3 Beta there is a flag GPExecuteToolFlags.RefreshProjectItems. I load data to my project to, but I use alternative technique. I create feature layer from lyr file and then update source. I repeat these steps for each layer. You can find more on: Pro 2.0 Bug "Apply Symbology From Layer" GeoProcessing Tool Your way did not work for me as I remember. I needed to go to layer properties, clear cache and set Don't cache any data locally. Then ArcGIS Pro refreshed layer with applied symbology.
... View more
11-29-2018
06:47 AM
|
0
|
0
|
2197
|
|
POST
|
Hi Brian, For GP parameters I use Geoprocessing.MakeValueArray method. It returns IReadOnlyList<string> value. Maybe simple string[] is not valid for geoprocessing? Have you tried to put your code inside try/catch and check for exceptions?
... View more
11-29-2018
05:42 AM
|
0
|
3
|
2197
|
|
POST
|
Hi Tim, You can use geoprocessing package made from geoprocessing tool for extracting values. You need to start local server if you want to do it on disconnected device. Another way is to use geoprocessing service from your server. Local Server—ArcGIS Runtime SDK for .NET | ArcGIS for Developers
... View more
11-28-2018
11:02 PM
|
0
|
0
|
960
|
|
POST
|
Hi Brian, "insertButton" has properties to specify order : <menus> <updateMenu refID="exampleMenu"> <insertButton refID="menuItem2a" placeWith="menuItem2" insert="after"/> </updateMenu> </menus> ProConcepts Framework · Esri/arcgis-pro-sdk Wiki · GitHub
... View more
11-28-2018
10:52 PM
|
2
|
11
|
3995
|
|
POST
|
Hi Brian, Look at that issue: Pro 2.0 Bug "Apply Symbology From Layer" GeoProcessing Tool At the end of the issue you will found solution with GP flag GPThread. If it will not work I will research deeper.
... View more
11-28-2018
10:34 PM
|
0
|
5
|
2197
|
|
POST
|
Hi Joshua, I mean after grabbing feature geometry you could use code from sample: //select features that intersect the sketch geometry var selection = MapView.Active.SelectFeatures(geo, SelectionCombinationMethod.New); IEnumerable<KeyValuePair<BasicFeatureLayer, List<long>>> result = from r in selection where string.Compare(r.Key.Name, "States", true) == 0 select r; //zoom to selection MapView.Active.ZoomToAsync(result.Select(kvp => kvp.Key), true, TimeSpan.FromSeconds(1.5), true);
... View more
11-15-2018
11:16 PM
|
0
|
1
|
1651
|
|
POST
|
Hi Joshua, Look at ArcGIS pro community sample: https://github.com/Esri/arcgis-pro-sdk-community-samples/blob/master/Map-Exploration/IdentifyWithSketchTool/SelectAndZoom.cs
... View more
11-14-2018
11:21 PM
|
0
|
12
|
4358
|
|
POST
|
Hi Thomas, Have you tried like this: OpenItemDialog searchGdbDialog = new OpenItemDialog { Title = "Find GDB", InitialLocation = Directory.GetCurrentDirectory(), MultiSelect = false, Filter = ItemFilters.featureDatasets_all }; var ok = searchGdbDialog.ShowDialog(); For me it works, I always get last visited folder.
... View more
11-12-2018
04:51 AM
|
1
|
1
|
1210
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Thursday | |
| 1 | a week ago | |
| 1 | a month ago | |
| 1 | a month ago | |
| 2 | 04-24-2026 08:33 AM |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|