|
POST
|
Hi When you use this GP tool using the UI, do you see a different behavior? For example, are you able to specify this same tolerance/resolution in the tool and run it? Do you get the expected results? I am trying to see if there an issue using the Pro API or is the result the same with the GP Tool. Thanks Uma
... View more
05-29-2020
01:30 PM
|
0
|
1
|
1866
|
|
POST
|
Hi Marvis, Resolution and Tolerance are properties of the Layer's SpatialReference. var lyr = MapView.Active.Map.GetLayersAsFlattenedList().OfType<FeatureLayer>().FirstOrDefault();
QueuedTask.Run( () => {
var spatialReference = lyr.GetSpatialReference();
var lyrResolution = spatialReference.XYResolution;
var lyrTolerance = spatialReference.XYTolerance;
}); Thanks! Uma
... View more
05-27-2020
03:15 PM
|
0
|
3
|
1866
|
|
POST
|
Hi Vamsi This is not available yet in the Pro API. But it has been planned to be added to a near term release of Pro. Thanks! Uma
... View more
05-27-2020
01:54 PM
|
0
|
0
|
1525
|
|
POST
|
You can check out some of these Annotation tools: Annotate Selected Features Convert Labels To Annotation
... View more
05-22-2020
09:33 AM
|
0
|
1
|
1019
|
|
POST
|
Hi Here is the wiki page in the Pro SDK Documentation Repo that has a bunch of Layout SDK snippets. ProSnippets: Layout Thanks Uma
... View more
05-21-2020
11:30 AM
|
1
|
0
|
1040
|
|
POST
|
Here are some snippets to create Text symbols. Does this help? ProSnippets TextSymbols · Esri/arcgis-pro-sdk Wiki · GitHub
... View more
05-15-2020
01:01 PM
|
0
|
1
|
1161
|
|
POST
|
Hi Than, Here are the rough steps to create a Point Symbol that uses a Picture Marker. This Picture marker will be your images. 1. In Pro, click the View tab, click Catalog View button. 2. Double click Styles in Catalog View and select the Favorites style. This is where you will make your custom point symbols. 3. On Pro's ribbon, select the Styles tab, Click New Item > Point Symbol. 4. Click the newly created point symbol. On Description tab provide a name, category and tags 5. On Properties tab > Layers tab change from Shape marker to Picture marker. 6. Click the File button and browse to your logo and open it. 7. Set other options like size appropriately and click Apply. Do this for all the images you to use for point features. You will need to create a separate label class for each feature that requires a different image. Separate them out using SQL queries. Here is some information on creating Label classes. http://pro.arcgis.com/en/pro-app/help/mapping/text/label-classes.htm Information on point symbols http://pro.arcgis.com/en/pro-app/help/mapping/symbols-and-styles/point-symbols.htm Information on saving symbols to styles http://pro.arcgis.com/en/pro-app/help/mapping/symbols-and-styles/save-symbols-in-styles.htm All these steps can be accomplished with the API: Create Point symbols from pictures, Create Label classes with SQL query, etc. When you create labels, be sure to use the Point callout to get the effect you need. Thanks! Uma
... View more
05-15-2020
11:46 AM
|
0
|
1
|
2536
|
|
POST
|
Hi Simon, These LayerDocument issues have been reported to the development team. We will prioritize adding these requirements for a future near term release. Thank you for all your feedback! Uma
... View more
05-15-2020
09:50 AM
|
1
|
1
|
3476
|
|
POST
|
Hi Simon Looks like the portal item URL cannot be passed to the Layer Document at this time. We will prioritize adding this requirement for a future near term release. Thanks! Uma
... View more
05-14-2020
12:26 PM
|
1
|
3
|
3476
|
|
POST
|
Hi Jeff, We understand the issue you have encountered and have prioritized adding bulk creation overloads for a near term release. Thank you! Uma
... View more
05-14-2020
09:34 AM
|
0
|
0
|
2878
|
|
POST
|
Hi Than How are you making the labels using the UI? Are you using Point callouts with leader lines? If so, this can be done with the API also. Thanks Uma
... View more
05-14-2020
08:40 AM
|
0
|
3
|
2536
|
|
POST
|
Hi, To include file content with you add-in/Configuration, you can refer to these instructions: ProGuide Content and Image Resources
... View more
05-14-2020
07:29 AM
|
0
|
0
|
1198
|
|
POST
|
Hi Dominic Please add the MinimumBreak property in the CIMClassBreaksRenderer. That allows it to display the values. Like this: CIMClassBreaksRenderer cimClassBreakRenderer = new CIMClassBreaksRenderer
{
ClassBreakType = ClassBreakType.GraduatedColor,
ClassificationMethod = ClassificationMethod.Manual,
//Field = SDKHelpers.GetNumericField(featureLayer),
Field = "NewPressure",
MinimumBreak = -15, //Replace with your minimum value
Breaks = listClassBreaks.ToArray()
};
... View more
05-13-2020
05:15 PM
|
1
|
1
|
2221
|
|
POST
|
Hi Tim, Here is some good news. With the 2.6 release of Pro coming up in the summer, this issue with displaying a chart for a standalone table is fixed. Thanks for reporting this! Uma
... View more
05-13-2020
02:34 PM
|
0
|
1
|
3245
|
|
POST
|
Hi Jeff, Couple of things to try: 1. Have you tried your code on 2.5.1 patch? This issue might be fixed in the patch. Check out bug No. 000130503. Release notes for ArcGIS Pro 2.5—ArcGIS Pro | Documentation 2. Another thing to try is to split the cloning and the "Naming" into separate QueuedTask class. Something like this: a. Create the elements in a loop within QueuedTask. Record the names in a dictionary, store with each name the name you want to change the element to. Exit the QueuedTask. This first loop is only create the elements. b. Change the name of each element in the CIM Defintion. Use the lookup dictionary to find the old and change it to the new. This second loop will help prevent the crash. Thanks Uma
... View more
05-12-2020
05:30 PM
|
0
|
2
|
2878
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-14-2026 09:54 AM | |
| 1 | 01-21-2026 10:48 AM | |
| 1 | 09-18-2025 03:09 PM | |
| 1 | 11-04-2025 08:25 AM | |
| 1 | 09-23-2025 09:31 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|