|
POST
|
Is there a better solution than this now? Id' rather not mess with CSS for this. I see Expand has a label property, but I'm not sure what it even does.
... View more
11-16-2022
10:06 AM
|
0
|
0
|
2423
|
|
POST
|
We're having an issue with an iPad... we open a route, and then when the user minimizes the app and opens a different app on the iPad and then when they go back to the Navigator app it says "Loading" and then it clears the existing route as if a route was never loaded. I tested this on my iPad and it doesn't do this... it keeps the route loaded even when I go back and forth from apps. Any idea why this other iPad is not doing that and clearing the route?
... View more
05-10-2022
04:31 PM
|
0
|
0
|
960
|
|
POST
|
Talk about unintuitive! Yikes! Who does the UX/UI for this app?
... View more
01-06-2022
03:13 PM
|
0
|
0
|
1014
|
|
POST
|
That's the problem though. No one knows and you need to be a super duper extreme power user just to generate a report, which is crazy since it's a survey app -- of course people are going to want to generate reports from the data. Even with the custom templating I don't see how to easily include charts/graphs. Like come on, have some nice looking reports by default. And limiting a report to 1,000 records in this day and age is just ridiculous -- like that's embarrassing. Why make it so you need a PHD and development experience? I thought that's what ESRI was for -- easy solutions for the end user -- but let me tell you, this is NOT easy. We'll just stick with SurveyMonkey or Microsoft products for these needs because, fortunately, they do make it easy.
... View more
11-02-2021
10:43 AM
|
0
|
0
|
1776
|
|
POST
|
@RobertScheitlin__GISP thanks, missing the array, also I just realized that I only need to do: view.popup.open({
features: [feature],
}); Because the queried feature is getting it's popupTemplate from the sublayer.
... View more
11-02-2021
08:19 AM
|
1
|
0
|
3930
|
|
POST
|
11-01-2021
01:46 PM
|
0
|
1
|
3938
|
|
POST
|
I just tried that and I get the error: [esri.widgets.Popup.PopupViewModel] e {name: 'fetch-features:invalid-screenpoint-or-view', details: {…}, message: 'Cannot fetch features without a screenPoint and view.'}
... View more
11-01-2021
12:08 PM
|
0
|
3
|
3942
|
|
POST
|
11-01-2021
11:43 AM
|
0
|
5
|
3948
|
|
POST
|
We had a non-ESRI employee create a Survey123 survey that was used to gather customer feedback. The survey is complete and she wanted to generate a simple report. The report is saying that it's limited to 1,000 records. That's a joke, right? Why is this so hard? Why can she not just generate a report of the results? This should be SIMPLE. Basically, all she wanted was a nice printable version of the charts/data under the Analyze tab, but if you use the "Print Current View" button, then it cuts everything off at the page breaks, and looks terrible. It's not exactly something you'd want to give to your board of directors. So, what's she doing? She's turning off all of the questions, and then one by one turning them on and printing the page to PDF. Thanks ESRI!
... View more
11-01-2021
11:41 AM
|
0
|
3
|
1818
|
|
POST
|
I'm trying to open a Popup for a feature returned from a QueryTask. If I just click on the feature in the map, then it works fine, but when the app first opens it zooms to a specific feature and I want to automatically display the popup for it. var meterNumber_Q = new Query();
meterNumber_Q.returnGeometry = true;
meterNumber_Q.outSpatialReference = sr;
meterNumber_Q.outFields = ['*'];
meterNumber_Q.where = `gs_meter_number = '${meterNumber}'`;
mapImageLayer.findSublayerById(27).queryFeatures(meterNumber_Q).then(zoomToServicePoint);
function zoomToServicePoint(results) {
var feature = results.features[0];
view.popup.open({
features: feature,
title: '<b>Layer: </b>Service Point',
content:
'<ul><li><b>Service Status: </b>{gs_service_status}</li>' +
'<li><b>Meter Number: </b>{gs_meter_number}</li>' +
'<li><b>Access Note: </b>{AccessNotes}</li><ul>'
});
} This opens the Popup, but it displays the Content exactly as above even though the feature contains the attributes listed inside the {}. Why aren't the attributes being transferred? Is there an easier way to do this since I already have the exact same information setup on the sublayer as a popupTemplate? {
id: 27, //Service Point
visible: true,
legendEnabled: true,
title: 'Service Point',
popupTemplate: servicePopupTemplate,
}, Thanks
... View more
10-28-2021
09:48 AM
|
0
|
6
|
3985
|
|
POST
|
Thanks, that does seem to work, but I don't understand how it's setting the scale level. It's too far out for what I'm wanting, but it does locate the feature. I think I'll just keep doing it how I always have since I can easily get the scale level I want using expand: servicePoint_QT.execute(meterNumber_Q).then(zoomToServicePoint);
function zoomToServicePoint(results) {
var geometry = results.features[0].geometry;
var buffer = geometryEngine.buffer(geometry, 10, 'feet');
view.extent = buffer.extent.expand(3);
}
... View more
10-28-2021
08:55 AM
|
0
|
1
|
2430
|
|
POST
|
On map load I want to zoom the map to a specific single feature, what's the best way to do this? `executeForExtent` doesn't work because the single feature doesn't have an extent. I think in the past I buffered the returned feature's geometry and zoomed to that created polygon feature. Is that still the best way to do this?
... View more
10-28-2021
08:18 AM
|
0
|
3
|
2478
|
|
POST
|
05-04-2021
10:15 AM
|
0
|
1
|
2061
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-04-2026 11:18 AM | |
| 1 | 03-05-2026 04:28 PM | |
| 1 | 03-04-2026 11:17 AM | |
| 3 | 03-04-2026 10:27 AM | |
| 9 | 03-03-2026 03:29 PM |