|
POST
|
What version of Pro are you using? I think in 2.x you cannot export a map series to .jpg, but in 3.x you can.
... View more
01-17-2025
06:26 AM
|
0
|
0
|
989
|
|
IDEA
|
Please add a way to Run a Task from some different environments. Either be able to execute a Task from the Ribbon or add running a task to the Python library. If the Task only includes Automatic (Hidden) steps, this would take away a couple clicks and put it front and center on the Ribbon for quick access. More importantly it would be very useful in a Python Script.
... View more
12-20-2024
11:06 AM
|
0
|
0
|
415
|
|
POST
|
Query the layer, loop through it, then use featureTable.selectRows(yourResults) and featureTable.filterBySelection(). The loop might not be needed?
... View more
12-12-2024
11:15 AM
|
0
|
0
|
380
|
|
POST
|
Try something like this inside the query. // Style the label
var labelClass = {
symbol: {
type: "text", // autocasts as new TextSymbol()
color:[254, 252, 203],
haloColor: "Black",
haloSize: 2,
lineWidth:55,
font: {
// autocast as new Font()
family: "Avenir Next LT Pro Medium",
size: 8,
weight: "bold"
}
},
labelExpressionInfo: {
expression: feature.attributes
},
labelPlacement: "always-horizontal",
//minScale: 7500
};
tLayer.labelingInfo = [labelClass];
tLayer.refresh()
... View more
12-12-2024
11:00 AM
|
0
|
0
|
345
|
|
POST
|
I would triple check all your paths. I ran this on both 2.x and 3.x and it ran with no issue. The only difference is I did it inside pro and used CURRENT for my path.
... View more
11-19-2024
08:32 AM
|
0
|
0
|
1841
|
|
POST
|
In earlier 2.x versions you could export your map series like 'folderlocation\.pdf' and it would export it with just the suffix name only. In 3.x you cannot anymore? It says something like 'folder location not available'. I upgraded to 3.x so I could export the map series as jpegs. The main reason I want the suffix name only is it makes it super simple to create a match table so I can create attachments with those jpegs. Then later use the points in a story maps map tour. Why the change?
... View more
11-01-2024
12:21 PM
|
0
|
0
|
404
|
|
POST
|
Why do you not create your own templates for the widget that are ADA compliant? Or create your own custom widget? Seems like that is unique to your state agency and you have the ability to create your own.
... View more
08-23-2024
11:09 AM
|
0
|
0
|
606
|
|
POST
|
I would call ESRI support. This seems to be a bug with the f-strings. Or perhaps in the original code create variables for both of the f-strings like the template creation is trying to do.
... View more
08-23-2024
08:14 AM
|
0
|
0
|
1241
|
|
POST
|
For geojson you can query the feature you want to extract, get the graphics and use its properties to extract the geojson. let newGraphic = new GraphicsLayer();
newGraphic.listMode = "hide";
theMap.add(newGraphic);
newGraphic.addMany(results.features);
newGraphic.listMode = "hide";
var graphJSON = []
graphJSON.push(newGraphic.graphics.toJSON())
... View more
08-23-2024
07:48 AM
|
1
|
1
|
745
|
|
POST
|
Make sure to change includeDefaultSources to false. I also make sure my sources searchFields, outFields, and diplayField are all the same. const searchWidget = new Search({
view: theView,
searchAllEnabled: true,
maxResults: 10000000,
maxSuggestions: 10000000,
title: "Quick Parcel Search",
label: "Quick Parcel Search",
includeDefaultSources: false,
locationEnabled: false,
exactMatch: false,
sources: [
{
layer: parcelLayer,
searchFields: ["PartyName_1"],
name: "Search by Owner",
exactMatch: false,
outFields: ["PartyName_1"],
displayField: "PartyName_1",
},
{
layer: parcelLayer,
searchFields: ["PropertyAddress"],
name: "Search by Address",
exactMatch: false,
outFields: ["PropertyAddress"],
displayField: "PropertyAddress",
},
{
layer: parcelLayer,
searchFields: ["QuickRefID"],
name: "Search by Quick Reference ID",
exactMatch: false,
outFields: ["QuickRefID"],
displayField: "QuickRefID",
}
],
});
... View more
08-23-2024
07:21 AM
|
0
|
1
|
616
|
|
POST
|
Start trying to query the field and use the angle on the TextSymbol. Never done this before so I am not positive this is the answer. https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-TextSymbol.html#angle
... View more
08-23-2024
07:10 AM
|
1
|
0
|
924
|
|
POST
|
Here is a code pen sample. In ESRI fashion they change these things all the time and don't clearly document the change or error messages for things like this. This works in 4.28, but not higher. Perhaps call support and see what the change was? https://codepen.io/mbdriscoll/pen/gONzWdL
... View more
08-23-2024
06:41 AM
|
0
|
1
|
892
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Tuesday | |
| 1 | a week ago | |
| 1 | 04-12-2021 09:58 AM | |
| 2 | 03-18-2025 10:32 AM | |
| 1 | 07-28-2020 11:56 AM |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|