IDEA
|
The problem with the Analysis tool is that if you have service data that changes often throughout the day. I would need to go and and run the tool often.
... View more
Friday
|
0
|
0
|
55
|
POST
|
Is it possible, with the Map tour using List layout, to show in the layout list only what is in view of the map? So as you zoom in the list shrinks.
... View more
Friday
|
0
|
0
|
52
|
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
|
84
|
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
|
138
|
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
|
59
|
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
|
82
|
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
|
574
|
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
|
178
|
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
|
313
|
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
|
536
|
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
|
291
|
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
|
265
|
Title | Kudos | Posted |
---|---|---|
1 | 07-28-2020 11:56 AM | |
1 | 08-23-2024 07:48 AM | |
1 | 08-23-2024 07:10 AM | |
1 | 08-13-2024 03:44 PM | |
1 | 06-17-2024 06:06 AM |
Online Status |
Online
|
Date Last Visited |
Friday
|