IDEA
|
You can try specifying the area of interest in the Imagery Feedback application. Whether ESRI follows through on that is an entirely different matter but that is one of the options for requesting updates to the imagery basemap.
... View more
2 weeks ago
|
0
|
0
|
67
|
POST
|
Sure, no problem. Not my area but it does seem like at least *some* of the gaps may be covered by the Illinois Lidar holdings? That gap along the eastern state border and the southern tip seems available according to this Lidar Status Map from 2024.
... View more
11-19-2024
11:53 AM
|
1
|
0
|
148
|
POST
|
Normally all USGS stuff would be downloaded through the EarthExplorer website but in this case, there's a different web app for that (link here). Look under the Elevation Producst (3DEP).
... View more
11-19-2024
11:26 AM
|
1
|
1
|
153
|
POST
|
How about making a copy of the layer in your map and then opening the symbology dialog for one of the two layers. In the upper right corner, click on the 3 hamburger lines and select Import Symbology option. As long as the attribute fields are of the same type (text->text, number->number, etc), then all you should need to do is specify the attribute fields and click run. In our organization, one of our data layers recently had an attribute field re-named so fixing a broken data link wouldn't honor the original symbology. By using the import symbology trick, I'm able to restore the layer in older projects.
... View more
11-18-2024
12:33 PM
|
1
|
2
|
327
|
POST
|
You haven't specified what EB environment you're working in- Portal or AGOL. If it's Portal based, you should be able to publish your own print templates and then specify that print service for the Print Widget. This link from the ArcGIS Server Help describes the process of publishing your own print templates.
... View more
11-14-2024
07:41 AM
|
0
|
6
|
248
|
IDEA
|
As the Near Me widget is currently implemented, you must manually draw a feature (point/line/polygon) to define the area for analysis. Please add the option to select a feature from one of the map layers and use that shape to define the area for analysis. This option should also apply to selecting a feature from a layer imported using the Add Data widget as well. It seems counter productive to important a dataset that defines an area of interest, only to have to manually trace it using the sketch tool in order to run the analysis. Just allow me to select the feature and get going.
... View more
11-01-2024
03:54 PM
|
3
|
2
|
206
|
IDEA
|
Trying to develop an EB app that will summarize census data based on the user's area of interest. Many census tables will break out the information based on multiple value ranges (3 age range classes, for example). On the web map side, this is easy since you can just create an expression using Arcade to sum up multiple field values as one. Unfortunately, if you do things this way (instead of adding a new calculated field) that expression field is not an option inside the Near Me widget's summarize section as one of the field choices. It would be a tremendous help if it was an option to include calculated expression fields in this part of the Near Me widget.
... View more
10-31-2024
02:51 PM
|
0
|
0
|
136
|
POST
|
ESRI has a Basemap Feedback Map where you can highlight issues for them to fix. In your description, be sure to indicate which basemap the error occurs just to make sure they fix the one that's most important to you.
... View more
10-24-2024
08:49 AM
|
0
|
1
|
223
|
POST
|
What I do is right click on the value, and then select the remove value option. I do it one by one, so I'm not sure if you can select multiple and remove them in one fell swoop.
... View more
10-02-2024
01:11 PM
|
1
|
1
|
446
|
POST
|
Extreme shot in the dark but I'm seeking older versions of some US Forest Service data that was previously posted to the internet in the early 2000s - 2010s. During this timeframe, each individual National Forest had a page on their website where they would post available GIS data for download. In the 2000s, the data posted was in Arc/Info Export File format (e00) and later in the 2010s they were posted as ArcMap Packages. The latter is still accessible through the Internet Archive but the older e00 versions were not archived (the data distribution page is archived but not the downloadable files). Here's the Internet Archive link from one of the 2000 era archives: https://web.archive.org/web/20110130174708/http://www.fs.fed.us/r6/data-library/gis/mthood/data-library.html These older e00 versions contain some layers which were NOT available in the 2010s. I'm interested in as many of these as possible but specifically the Quarries point dataset and the VEGIS dataset (I have a VEGIS version from the 2010s but the related tables are often blank for reasons unknown). Thanks! Steve
... View more
09-23-2024
08:17 AM
|
1
|
0
|
255
|
POST
|
here might be some indication of the issue if you look at the underlying print request. To do this, set the map up to the point where you would print. Now open your developer Tools in your browser (in Chrome, this is done by pressing the F12 key). In the Developer Tools window, switch to the Network tab Now in your EB app, attempt to print using the widget Switch back to the Developer Tools app and look at the activity is has logged. On the left-hand side, click on the entry that's named "execute". This should be the actual print request. You should see a number of tabs of information now on the right-hand side (Headers | Payload | Preview | Response | Initiator | Timing | Cookies) Click on the Response tab to look at its details. If there was an error while printing, it should be reflected and (briefly) described here.
... View more
09-18-2024
08:52 AM
|
0
|
1
|
283
|
POST
|
Ugh. You know, changing the DPI parameter was a conscious decision when I migrated the code but the manner in which it's implemented was unexpected. Changing it back to 50 yielded the same print results so thanks for pointing to that. My intent with bumping up the DPI was to increase the sharpness of the output image, much like when you bump up the DPI when exporting to a PDF. In reality, the export map function seems to have ended up just zooming into the map since the dpi I specified was doubled. Anyways, thanks again. Glad that my remaining migration issue is now solved.
... View more
09-16-2024
08:57 AM
|
0
|
0
|
458
|
POST
|
I submitted an idea to get the resize method restored in the API but I finally have success using CSS. I'm still using the same approach as originally outline above but my resizePopupWindow function has changed. I'm now using the setProperty method on the style property and that finally works: resizePopupWindow(theWidth,theHeight) {
var theCssWidth = theWidth + 'px';
var theCssHeight = theHeight + 'px';
var cols = document.querySelectorAll('.esri-view-width-xlarge .esri-popup__main-container');
if (cols.length > 0) {
console.log('Adjusting the popup dimensions to ' + theWidth + ' x ' + theHeight);
for(var i = 0; i < cols.length; i++) {
cols[i].style.setProperty("maxHeight", theCssHeight,"important");
cols[i].style.setProperty("maxWidth", theCssWidth,"important");
cols[i].style.setProperty("height", theCssHeight,"important");
cols[i].style.setProperty("width", theCssWidth,"important");
}
}
} Hopefully that helps out someone else. I should note that the application I'm using this with is really designed for us in a desktop browser environment. I don't know about trying to use this approach under mobile device circumstances.
... View more
09-09-2024
10:48 AM
|
0
|
0
|
152
|
POST
|
Hey Bryan, thanks for the suggestion; it was something I had not tried. Unfortunately, it did not make a difference with my output. We're running v11.1 of Portal so I don't know if is changing things in terms of our situation vs yours.
... View more
09-06-2024
03:50 PM
|
0
|
0
|
585
|
Title | Kudos | Posted |
---|---|---|
1 | 01-25-2024 08:29 AM | |
1 | 01-22-2024 04:19 PM | |
2 | 11-22-2024 09:08 AM | |
1 | 11-19-2024 11:53 AM | |
1 | 11-19-2024 11:26 AM |