|
POST
|
Here are two examples of apps that might work for you. Here's the sidebar app https://jsapi.maps.arcgis.com/apps/instant/sidebar/index.html?appid=d0319427168849b7a114e9ebc7ab6da1 And here's media https://jsapi.maps.arcgis.com/apps/instant/media/index.html?appid=ba5fec1a493140219e31725cd8fffde7
... View more
08-08-2022
11:39 AM
|
0
|
1
|
2228
|
|
POST
|
Oh wait just looked more closely at the screenshot and it looks like you are using the Basic Viewer app which is an older instant app. I'll test it out and see if I can reproduce there. What types of capabilities does your app need? We have several instant apps that are using the latest updates and are more mobile friendly than the basic viewer. One option to take a look at is the Sidebar app to see if it fits your needs.
... View more
08-08-2022
10:52 AM
|
0
|
1
|
2232
|
|
POST
|
Ok I modified the sample to put the popup in the upper right and still can’t reproduce the problem with my sample app. Which browser(s) are you using? If you open the browser developer tools are there any errors shown in the console when you click to open the popup. If you haven’t used the browser dev tools yet here is how you open them: https://developer.mozilla.org/en-US/docs/Learn/Common_questions/What_are_browser_developer_tools
... View more
08-08-2022
10:48 AM
|
0
|
0
|
2234
|
|
POST
|
Hi Jay, I created a test app here and' can't reproduce the issue. Is your app public? If so can you share the link? Here's my test app: https://jsapi.maps.arcgis.com/apps/instant/basic/index.html?appid=0724e272354a4815b5b2f5a4af0a1f04
... View more
08-08-2022
09:49 AM
|
0
|
2
|
2238
|
|
IDEA
|
Yes that makes sense. We'll look at adding a config option to set the default units for measuremenbt.
... View more
08-03-2022
12:09 PM
|
0
|
0
|
5353
|
|
IDEA
|
This is currently possible in some instant apps. For example in Sidebar you can enable the LayerList then add the "Show Legend' option.
... View more
08-03-2022
11:10 AM
|
0
|
0
|
1039
|
|
IDEA
|
@CatherineCronlund_2 can you provide more details about what you mean by "Set a default measurement". Do you mean that you want the tool to be started with a pre-existing location to measure?
... View more
08-03-2022
11:07 AM
|
0
|
0
|
5363
|
|
IDEA
|
@wayfaringrob After creating filters in sidebar you should see a box with the label "Custom filters" in that box you have the option to edit or remove the filters. Here's an example of how it looks: Screen Shot 2022-08-03 at 11.04.00 AM.png
... View more
08-03-2022
11:04 AM
|
0
|
0
|
612
|
|
POST
|
The Imagery Viewer app is designed to allow you to explore imagery data using various tools. You'll find more info here on the data requirements for that app: https://doc.arcgis.com/en/instant-apps/latest/create-apps/imagery-viewer.htm What types of things do you need the app to do? If you just want to show a map you can use the Media or Basic instant apps to do that and both have the option to enable additional tools like Legend, Scalebar etc.
... View more
08-03-2022
11:00 AM
|
0
|
1
|
1696
|
|
IDEA
|
@ArielLow2146 and @MichaelRobles we talked about this and can definitely see the use cases so we are going to look into implementing this workflow. We have a few questions about the behavior you'd expect to see and wondered if you could email so we can continue to discuss how this would look/work in the app. My email address is [email protected] please send me an email if you'd like to discuss this in more detail with the team.
... View more
07-29-2022
10:03 AM
|
0
|
0
|
3748
|
|
IDEA
|
@ArielLow2146 thanks for the additional use case. So I think in both situations if we added an option to show the layer associated with the clicked result and highlight the selected feature that would work for both use cases. Just to make sure I've got it right in your congressional app if I clicked on OR Senate District 14 then you'd see the entire senate district layer with district 14 highlighted?
... View more
07-27-2022
03:43 PM
|
0
|
0
|
3764
|
|
POST
|
We have the ability to theme the app on our roadmap. In the meantime if you know css you can also style the app using the custom css options. Here is a quick - not very attractive example- that you could use to play around with. The colors in the example below are defined using hex codes. You can use a tool like this one to find a hex color for various color values: https://htmlcolorcodes.com/color-picker/ If there is a portion of the app you'd like to style that isn't covered by the css below let me know on this thread and I'll see what I can do to help. /*The background color for the app header*/
.fg__header {
background: #00bcd4;
}
/*The text color for the app header*/
.fg__header-title-section{
color:#fff;
}
/*The color of the back of the card that contains the thumbnail and desc*/
.card-gc__container, .card-gc__thumb-container{
background:#ddd;
}
/*Color for the background of the main area that contains the gallery*/
.fg__row{
background-color:#738593;
}
/* Text color for the text that shows the # of results*/
.fg-input-area__result-count{
color:#fff;
}
/*Colors for the navigation buttons at the bottom of the gallery*/
.nav-pager__btn{
color:#fff !important;
}
... View more
07-27-2022
10:07 AM
|
1
|
4
|
4454
|
|
IDEA
|
Michael, Thanks for the feedback. I want to make sure I understand your situation. It sounds like you have a zone lookup map where there are several hazards in the map area (earthquakes, fires, floods etc) and you only want the actual location to show up on the map when someone clicks the result in the side panel? Would setting up filters work for your use case? You could have a filter for each type of hazard and use those to filter the view?
... View more
07-27-2022
08:54 AM
|
0
|
0
|
3775
|
|
POST
|
Hi Christopher Thanks for the feedback. If you toggle off the Express option at the top of the config panel you'll see that there are options to disable the author, item type, date, view count etc. There isn't a config option for disabling the summary but we can look into that for a future release. Screen Shot 2022-07-27 at 8.44.11 AM.png However you can turn off the summary using the Custom CSS option that can be found in the Theme and Layout section of the config panel. If you paste this css into the input box it will hide the summary and make the item cards a bit smaller: .card-gc__snippet{display:none;} .card-gc__details-container{min-height:200px;}
... View more
07-27-2022
08:50 AM
|
0
|
6
|
4471
|
|
POST
|
Thanks for the link. The app doesn't currently support using map notes feature collections as a layer. We can look at adding support for this in a future release.
... View more
07-19-2022
09:33 AM
|
0
|
0
|
2331
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 4 weeks ago | |
| 1 | 4 weeks ago | |
| 2 | 07-21-2026 09:30 AM | |
| 2 | 07-21-2026 08:35 AM | |
| 1 | 07-09-2026 08:56 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|