|
POST
|
Sorry, you must explicitly put the field name into the config for the filter to show up in the app.
... View more
05-11-2015
07:22 AM
|
0
|
1
|
2415
|
|
POST
|
The issue is that the filter field must be named exactly “filter” (lowercase f). Alternatively, you should find a filterField option in the config section of the index.html file. If you set it to “Filter,” that should also add the filter correctly. Are your thumbnail images shared publicly? They do not work for me even in Chrome. They would come through in Chrome if that browser was logged into your Google account.
... View more
05-08-2015
01:39 PM
|
0
|
3
|
2415
|
|
POST
|
Can you post a link to your web map so we can investigate?
... View more
05-08-2015
12:56 PM
|
0
|
5
|
2415
|
|
POST
|
It is technically possible to modify one of the story map templates to allow the function you have stated, however you will need to be pretty familiar with the JavaScript API and web map data structure. That being said, we believe it would be a far better idea to keep the link in the popup. In usability testing, we found that users can get very confused when they click on something in a map and get taken to a new page without any notice. I recommend adding some brief information or at least the name then a link to the site. You could even make a nice looking button in photoshop that say something like “click for more information” which you then add the link to. This is all possible when you configure the popup in the web map viewer. Besides being far easier to accomplish, especially if you are not a developer, it will provide a better user experience.
... View more
05-08-2015
08:47 AM
|
1
|
1
|
4989
|
|
POST
|
"The Rapid Rise of Farmers Markets" is not one of our usual app templates which is why you are unable to find in on our website. It was developed as a custom application for use with a specific story. It is only in prototype form and many components and most of the data is hard-coded and not easily configurable. There is no documentation and we cannot provide support for the code. If would still like to work with the code, you will need to be very familiar with JavaScript, Stylus, Node, Grunt, and Esri-Leaflet. You can find the source code here: ssylvia/farmers-markets · GitHub
... View more
05-05-2015
08:26 AM
|
1
|
0
|
520
|
|
POST
|
This functionality is already build into the playlist app. All you have to do is add a new field “filter” to you playlist points layer. Then set the filter title for each feature. For every unique filter, the app will add a checkbox that toggle those items on/off. Here’s an example that uses it: http://storymaps.esri.com/stories/2013/storylocator/. You’ll notice there is a filter icon next to the search box.
... View more
04-08-2015
10:26 AM
|
0
|
1
|
2415
|
|
POST
|
If you are using the map tour template, you will not be able to use the interactive builder that is provided with ArcGIS Online. Once you start using the builder, the points showing in the map tour will be locked down, even if you add more points to the dataset or filter the. Instead you will need to download the developer version of the code: https://github.com/Esri/map-tour-storytelling-template-js. There is lots of documentation in the readme for the specific data structure of your CSV and other information you will need for rebuilding your app for production, etc. For disabling map navigation, you will need to work with the methods that the JavaScript API provides like disablePan (https://developers.arcgis.com/javascript/jsapi/map-amd.html). Also, make sure you set the map option “smartNavigation” to false. You can do this in the Core.js file when the map is first loaded: https://github.com/Esri/map-tour-storytelling-template-js/blob/0d2934378b575e8db4bc31e26f43dd5df2ccd179/MapTour/src/app/storymaps/core/Core.js#L424.
... View more
04-01-2015
09:03 AM
|
2
|
2
|
1224
|
|
POST
|
The answer to both questions is yes, however, depending of the template you are using it might be very involved to load the web map from individual layer rather than using a web map. Which template are you using (http://storymaps.arcgis.com/en/app-list/)? Another option is to continue using a web map, but instead of dragging the CSV file onto the map, you can add a CSV file from a URL. This CSV can live on your server and be updated with your script. Every time the web map is loaded in the app, it will fetch the data from your server so it will always be up to date. You could also look into a feature service, which may be easier to update and host than a CSV file.
... View more
04-01-2015
08:26 AM
|
0
|
4
|
1224
|
|
POST
|
It looks like you have a very specific look and feel that you want to accomplish with your map. Instead of starting with a story map template and stripping out all the extra code and adding new code for filtering, panning, and loading map layers without a web map id; I would recommend starting from scratch. Here’s a sample that creates a map and loads a CSV file with only a few lines of code: https://developers.arcgis.com/javascript/jssamples/layers_csv.html. The API documentation has lots of samples to help you load other types of layers, apply filters, and much more. Hope this helps.
... View more
03-31-2015
07:57 AM
|
1
|
6
|
1224
|
|
POST
|
You are correct, we have not made a template available yet. The stories you see using this template are only a prototype and not ready for everyone to use at this point. We have set this app as a high priority but it will still be a few months before we have anything to share.
... View more
03-23-2015
05:08 AM
|
1
|
8
|
2011
|
|
POST
|
Are you referring to our new Map Series app using the tabbed template. That one includes a full interactive builder and looks like this: http://storymaps.esri.com/stories/2015/celebrating-a-world-of-cheese/ Or are you referring to the recently retired text and legend template: http://www.arcgis.com/apps/StorytellingTextLegend/index.html?appid=c72ce2ec4eec4da6935423d04a2ab0ed
... View more
03-19-2015
09:56 AM
|
0
|
1
|
2675
|
|
POST
|
This app is actually pretty simple. Instead of loading a web map in the main stage, you should choose to load a web page. Then, you can embed the web scene into that section. We recommend using the “stretch” position when you configure the page. Also, unselect the “Unload when reader navigates away” as this will cause the scene to be reloaded every time you return to that section. One more trick, add “&ui=min” to the end of the web scene url so you don’t get the login banner on top. For example: http://www.arcgis.com/home/webscene/viewer.html?webscene=91b46c2b162c48dba264b2190e1dbcff&ui=min Instead of http://www.arcgis.com/home/webscene/viewer.html?webscene=91b46c2b162c48dba264b2190e1dbcff
... View more
03-19-2015
08:05 AM
|
3
|
1
|
1007
|
|
POST
|
Unfortunately, this is not yet built into the Countdown template. You would have to extend the JavaScript to make this work.
... View more
03-17-2015
09:54 AM
|
0
|
0
|
605
|
|
POST
|
We recently added a few new features to the Playlist App to support multiple playlist layers with tabs and a few other enhancements. However, we found this bug occurred when there when the new configuration was not found. We fixed this and the most recent push to GitHub should resolve this issue. If you still have issue after updating to the most recent version of the code, let us know.
... View more
03-16-2015
08:12 AM
|
0
|
1
|
655
|
|
POST
|
The playlist app will automatically pull the description from the playlist web map or the configuration section in the index.html file. If you do not have a description, it will not be included. If you would like to include the description in the web map item details, you will need to dig into the javascript with the developer download and customize the app.
... View more
01-27-2015
09:03 AM
|
0
|
0
|
563
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 01-10-2018 05:56 AM | |
| 1 | 02-03-2016 11:13 AM | |
| 1 | 03-17-2017 07:22 AM | |
| 1 | 08-25-2017 06:35 AM | |
| 1 | 10-25-2016 05:09 AM |
| Online Status |
Offline
|
| Date Last Visited |
05-08-2024
09:40 PM
|