|
POST
|
My manifest.json indicates that this is on off-panel widget ("inPanel": false). Are there additional settings controlling whether this is on- or off-panel? If I change to "inPanel": true, then a panel opens when I activate the widget in the app.
... View more
09-01-2017
03:36 PM
|
0
|
4
|
4023
|
|
POST
|
Yes, I need a widget that the map author configures in the builder, and then runs hidden in the background when the app is launched.
... View more
09-01-2017
03:13 PM
|
0
|
6
|
4023
|
|
POST
|
I'm sure there is some simple config setting I'm missing, but how do I completely hide a WAB widget icon from the built app? I've tried things like: setting "visible": true in manifest.json (doesn't load widget at all), setting visible property false on widget via "this.appConfig.widgetOnScreen.widgets" (changes property to false, but widget is still visible). In builder: In app (don't want this icon): I'm open to the notion that there is a more fundamental setting I'm missing, like how to specify the widget as "not on-screen" right from the onset. Any help appreciated!
... View more
09-01-2017
02:29 PM
|
0
|
8
|
5456
|
|
POST
|
Hmmm... this page seems to say it's not possible: 001156: Failed on input OID ; could not write value '' to output field .—Help | ArcGIS Desktop A value could not be added to the output field; for example, text values cannot be added to numeric fields, and text values cannot be added to text fields if the values are longer than the field length.
... View more
06-02-2017
03:03 PM
|
1
|
2
|
3756
|
|
POST
|
Depending on exactly how you want to do it, a couple ideas: - download and customize the story map app itself: GitHub - Esri/storymap-series: The Story Map Series lets you present a series of maps via tabs, numbered bullets, or a s… - present the story map in an iFrame and deal with the feedback form completely separately
... View more
06-02-2017
02:48 PM
|
0
|
0
|
1007
|
|
POST
|
You remove features from a selection using the same tool as you use to add them: Select Layer By Attribute—Help | ArcGIS for Desktop or Select Layer By Location—Help | ArcGIS for Desktop Check the 'selection_type' parameter, 'REMOVE_FROM_SELECTION' option.
... View more
05-31-2017
01:15 PM
|
1
|
5
|
2618
|
|
POST
|
I think this can be done by identifying "critical" points (i.e. those that surpass some threshold of angle [e.g. <45 degrees at points 10m away, or something]) and then extending a short cutting line opposite the angle. Of course, this will take you some time to figure out the math, learn Python, script, deal with unforeseen errors, etc. In the end, depending on how many times you need to do this (are we talking tens or millions?), as Dan_Patterson says, it may not be worth figuring out.
... View more
05-31-2017
09:59 AM
|
2
|
0
|
1586
|
|
POST
|
If you're up for it, you could code this custom behaviour in the source code and deploy your own web app, but I don't believe you can customize the stock tour story map this way. Alternatively, you can use a different story map template (e.g. Journal), which does support section-dependent zoom levels.
... View more
05-31-2017
09:07 AM
|
1
|
5
|
4376
|
|
POST
|
Can you describe exactly what you want to happen, so simply that a computer could understand? For example, what do you want to happen in the curvy part of the top triangle? If you can't describe it in terms of extremely simple rules, you won't be able to automate it.
... View more
05-30-2017
02:17 PM
|
2
|
3
|
1586
|
|
POST
|
Try setting the origin coordinate in Grid Index Features.
... View more
05-30-2017
10:42 AM
|
1
|
0
|
4631
|
|
POST
|
Actually, on second thought, the original line I referenced looks for any value passed in the url for 'forceMobile', so when you load the iframe, just add a url parameter: https://mapitconsulting.maps.arcgis.com/apps/Shortlist/index.html?appid=5d8042b827c54cacb6805b44d11f301c&forceMobile=mob…
... View more
05-29-2017
04:39 PM
|
1
|
1
|
2013
|
|
POST
|
I don't know if there's a way to do this through the builder (I doubt it), but I believe you can kind of hack it by changing line 971 in src/app/storymaps/common/Core.js from... forceMobile = _urlParams.forceMobile !== undefined || app.indexCfg.forceMobile; to... forceMobile = true; But if you're not building the web app from source, it's a pretty long way around to add this functionality.
... View more
05-29-2017
04:28 PM
|
0
|
3
|
2013
|
|
POST
|
Maybe this will get you started. Your feature data can be accessed through the JavaScript function app.data.getAllFeatures(). It looks like your data are in Esri Web Mercator - if you need true lat/long, you'll have to do a little more work. Open the debugger tool in your browser and use a quick JS like: var mylist = [];
var features = app.data.getAllFeatures();
for (var i=0;i<features.length;i++){
mylist.push([features[i].attributes.getName(),features[i].geometry.x, features[i].geometry.y]);
}
document.write(mylist.join("<br>")); Results in: ...
... View more
05-25-2017
03:09 PM
|
1
|
1
|
1652
|
|
POST
|
The process is always exactly the same: 1.) Know what coordinate reference system the data in your XY table are in 2.) Display the data, in that CRS (define the CRS) 3.) Project the data to whatever CRS you want ArcMap can't choose the CRS for you, because there are literally an infinite number of CRSs. The CRSs listed in ArcGIS are just those that happen to have names, but you can make your own custom CRS if you want.
... View more
05-25-2017
01:40 PM
|
2
|
3
|
1529
|
|
POST
|
I would like to author new AGOL maps/web apps using custom templates, however I am faced by the following error: "The organization contact website address does not appear to be valid." Process: In My Organization tab, go into Edit Settings On Map tab, under Configurable Apps, choose group containing the custom templates. It doesn't matter if select to save Esri default configurable apps or not, error either way. Click Save, and error pop-up appears. I'm trying to find some setting for an "organization contact website address", and don't see it.
... View more
05-08-2017
09:06 AM
|
0
|
0
|
958
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 08-30-2013 02:22 PM | |
| 1 | 04-12-2011 11:19 AM | |
| 1 | 09-17-2021 09:43 AM | |
| 1 | 04-04-2012 12:05 PM | |
| 2 | 07-16-2020 11:31 AM |
| Online Status |
Offline
|
| Date Last Visited |
07-15-2023
12:11 AM
|