POST
|
We'll get this fixed in a future release of online. In the meantime you should be able to fix it by pasting the following into the Custom CSS box during the basic configuration. You'll find that setting in the Theme section. Let me know if this doesn't work for you because it may require some additional modifications. .esri-view-width-xsmall .esri-popup--is-docked-top-center, .esri-view-width-xsmall .esri-popup--is-docked-bottom-center {
height: 100vh;
max-height: calc(100vh - 50px);
z-index:1000;
bottom: 0
top: 0;
position: relative;
}
... View more
Tuesday
|
0
|
1
|
49
|
POST
|
We'll take a look at adding support for this to Instant Apps in a future release.
... View more
a week ago
|
0
|
0
|
41
|
POST
|
So glad it helped. It may be a bug in the application where it is picking up a setting it shouldn't be using. We'll look into getting that resolved in the next release.
... View more
2 weeks ago
|
0
|
0
|
88
|
POST
|
@MarkGambordella can you try setting the following in your app to see if it resolves the issue: 1. Go into the configuration and select "Features within a Zone" 2. Find the setting for Spatial Relationship and select "Contains" 3. Switch back to 'For a Zone" then save and publish the app
... View more
2 weeks ago
|
1
|
2
|
94
|
POST
|
Ok I updated the test app to use the locator and in my testing its still just returning one result. https://www.arcgis.com/apps/instant/lookup/index.html?appid=6a9c11455126444e8c9732f6c3241443 I'll keep looking at the properties to see if I can figure out what is different between the two apps.
... View more
2 weeks ago
|
0
|
3
|
108
|
POST
|
Thanks for the app link and test addresses. I setup a test app using your data and it only returns one result. Can you test this out and see if it works as expected. https://www.arcgis.com/apps/instant/lookup/index.html?appid=6a9c11455126444e8c9732f6c3241443 If it does work as expected here is the configuration used to get only the AWS service days to show up in the list.
... View more
2 weeks ago
|
0
|
5
|
116
|
POST
|
Ok I think I found the issue. It looks like if you have a map image layer then there will be situations where the layers are duplicated. But as a workaround, I ran a quick test and it looks like you can remove the map image layer from the legend in the Map Viewer to remove the duplicates. To do this select the main layer - in this example its called "AssessmentDistricts" then use the three dots to select "Show Properties" which will open the properties panel then you can unselect "Show in map legend". Let me know if this workaround works for you.
... View more
2 weeks ago
|
0
|
0
|
163
|
POST
|
Are the app or map public? If so can you share the link I'd be happy to take a look.
... View more
2 weeks ago
|
0
|
0
|
168
|
POST
|
Which instant app are you using? There is an option to choose dual as the units for the Scalebar in most apps. We are working on a configuration option that allows you to define units for use in the app but it is not yet available.
... View more
2 weeks ago
|
0
|
1
|
85
|
IDEA
|
@HBrowning thank you for the feedback. It sounds like you are requesting an option for the layer list to add a toggle instead of an eyeball or checkbox is that correct? For the layer list we use a component from the ArcGIS Maps SDK for JavaScript and it currently only offers the two options (eyeball and checkbox). If they add additional configuration options we can look into exposing those via instant apps. https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#visibilityAppearance
... View more
2 weeks ago
|
0
|
0
|
64
|
POST
|
Sorry for the delay in responding. It looks like an issue with the logic for related records and we'll get it fixed in the next release of online. In the meantime as a workaround you could write an arcade expression that shows the designated polling place related record content directly in the popup. In my testing this does not disappear after clicking the related record. Here's the arcade I used to test it out. var relatedRecords = FeatureSetByRelationshipName(
$feature,
"BND3_PollingPlace_ED_to_Locations"
);
var firstRelatedRecord = First(relatedRecords);
console(firstRelatedRecord)
var encodedAddress = UrlEncode((firstRelatedRecord.POLLING_PLACE_ADDRESS))
var baseUrl = `https://www.google.com/maps/search/?api=1&query=${encodedAddress}`;
var displayAddress = `${firstRelatedRecord.ADDRESS}<br>${firstRelatedRecord.City},${firstRelatedRecord.STATE}${firstRelatedRecord.ZIP}`
return { type: "text", text: `<b>${firstRelatedRecord.POLLING_PLACE_NAME}</b><br><br><a href=${baseUrl}> ${displayAddress}</a><br><br> <i>Click on address to open polling place in Google Maps</i>` };
... View more
3 weeks ago
|
0
|
1
|
63
|
IDEA
|
You can create an app (Experience Builder or Instant App) that has the time slider and add it as an item to your portfolio? The Slider and Media instant apps both have the time slider capability. Here's an example https://jsapi.maps.arcgis.com/apps/instant/portfolio/index.html?appid=b8e9fb7246b54ed09f320c1445c72a89
... View more
07-15-2025
07:32 AM
|
0
|
0
|
60
|
POST
|
You could choose the configuration option "Open as introduction window" to change it to open the info content as a floating popup window. This would make the function of the info button more apparent. And if you don't need users to be able to re-open the info on demand you could leave your app as-is and then use the Custom CSS option in the theming section to hide the info button. To do so use this css #infoButton{
display:none;}
... View more
07-14-2025
08:29 AM
|
0
|
0
|
83
|
POST
|
You should be able to style that section using the class (dist) that is applied. Here's an example: .dist{
background:magenta;}
}
... View more
07-10-2025
03:46 PM
|
0
|
1
|
124
|
Title | Kudos | Posted |
---|---|---|
1 | 2 weeks ago | |
1 | 06-18-2025 01:51 PM | |
1 | 06-26-2025 12:30 PM | |
1 | 06-26-2025 11:02 AM | |
1 | 06-24-2025 09:34 AM |
Online Status |
Offline
|
Date Last Visited |
Tuesday
|