|
POST
|
This isn't mission critical. Just starting to prep for a presentation for GIS Day. Here is the webmap link. The strange thing is that the dialog window to choose between "as-is" or saving a copy didn't even show up. I added the services as both a dynamic map layer and feature layer. The service is hosted with our on-premise AGS Server.
... View more
09-07-2018
12:03 PM
|
0
|
1
|
1211
|
|
POST
|
Just a couple weeks ago, I was working on a Shortlist Story Map app. When I went to share the web map as the Shortlist app, it gave me a few options: use the data from a web service as-is, or create a copy of the data. Today, I go to create a Shortlist app using the same service, and it doesn't give me the dialog. And the shortlist builder doesn't even show that point geometry web service on the map? What happened? And if this was an intentional change, where was this significant change noted?
... View more
09-07-2018
09:06 AM
|
0
|
3
|
1372
|
|
POST
|
Paul Brown, while I can't speak to what's going on with ArcGIS Pro, you could check out the Arc Open Tool to convert shapefiles/feature classes to GeoJSON using ArcGIS Desktop (ArcMap/Catalog). Maybe you can use this tool while you await resolution with the ArcGIS Pro stuff?
... View more
09-04-2018
09:02 AM
|
0
|
0
|
4744
|
|
DOC
|
The HTTP call to the image comes from line 36 of the widget/sPopupPanel/css/style.css file: .titleButton {
float: right;
cursor: pointer;
background: transparent url("http://js.arcgis.com/3.15/esri/dijit/images/popup.png") no-repeat scroll 0% 0%;
margin:0 4px
} I would make the call as either "https://js.arcgis.com/3.15/esri/dijit/images/popup.png" or "//js.arcgis.com/3.15/esri/dijit/images/popup.png". As written, unless a user manually updates this line, using the popup panel with HTTPS protocol will always result in mixed content.
... View more
07-31-2018
08:11 AM
|
0
|
0
|
12280
|
|
DOC
|
Thanks for the heads up. If I get any meaningful resolution, I'll post back here for reference for others.
... View more
07-23-2018
08:32 AM
|
0
|
0
|
12280
|
|
DOC
|
I discovered an odd behavior between the popup panel and the header widgets on small screens for the Jewelry Box Theme. When the popup panel is open, the header widgets group (a square of buttons) appears very small. You cannot close the popup panel unless you press on the tiny square and hope that a widget opens. If the popup panel is closed, the header widgets group appears the normal size.
... View more
07-17-2018
05:30 AM
|
0
|
0
|
12280
|
|
DOC
|
I've discovered a mixed content issue with this widget. I'm using Web AppBuilder 2.8 and Jewelry Box Theme. A test site is available at Property Mapper. Whenever, a feature is selected, and the popup opens, the following resource is loaded over http: http://js.arcgis.com/3.15/esri/dijit/images/popup.png. Not sure if this is an issue related to the Popup Panel widget or with WAB 2.8. Any idea how to fix this issue? I really don't want a mixed content issue occurring when we push these changes to our live site.
... View more
07-17-2018
05:14 AM
|
0
|
0
|
12280
|
|
POST
|
I saw the Shortlist story map is now officially out of beta (woot! woot!). At version 1.4.9, the associated pdf with the app stated that the maximum records for a tab is 200. Is that number still valid? Or has it changed with the latest release?
... View more
07-03-2018
11:39 AM
|
0
|
1
|
1082
|
|
POST
|
David, Thanks for the advice. It worked, although the line number references didn't match. I'm pasting the code for reference to others: config_Search.json ([app]/configs/Search]): {
"allPlaceholder": "Property Search",
"showInfoWindowOnSelect": true,
"sources": [
{
"layerId": null,
"url": "https://[website]/arcgis/rest/services/Tax_Assessment/Parcels/MapServer/0",
"name": "Property Address",
"placeholder": "310 Allen Road",
"searchFields": [
"SITUS"
],
"displayField": "SITUS",
"suggestionTemplate": "${SITUS}, ${MUNI_NAME}",
"exactMatch": false,
"searchInCurrentMapExtent": false,
"zoomScale": 50000,
"maxSuggestions": 8,
"maxResults": 8,
"type": "query"
},
{
// other search fields
}
]
} Widget.js ([app]/widgets/Search): // Within _convertConfig, around line 254:
_convertConfig: function(config) {
// within else if statement
else if (source && source.url && source.type === 'query') {
// within this.own
this.own(on(searchLayer, 'load', lang.hitch(this, function(results) {
var convertedSource = {
featureLayer: flayer,
outFields: ["*"],
searchFields: fNames,
displayField: source.displayField || "",
exactMatch: !!source.exactMatch,
name: jimuUtils.stripHTML(source.name || ""),
placeholder: jimuUtils.stripHTML(source.placeholder || ""),
maxSuggestions: source.maxSuggestions || 6,
maxResults: source.maxResults || 6,
zoomScale: source.zoomScale || 50000,
infoTemplate: template,
useMapExtent: !!source.searchInCurrentMapExtent,
_featureLayerId: source.layerId,
// allow suggestions to include two fields
suggestionTemplate: source.suggestionTemplate || ""
};
})));
}
... View more
06-29-2018
09:05 AM
|
3
|
1
|
2583
|
|
POST
|
I was wondering if it is possible to have more than one field, or a combination of multiple fields and strings for the displayField property for the standard search widget for Web AppBuilder? For one of my searches, I would like to include two fields so users would see both the address and municipality for the suggested result, as some addresses are in more than one municipality. This code is from the config_Search.json file in the configs\Search directory of WAB. Here is the current snippet: {
"layerId": null,
"url": "https://gis.ccpa.net/arcgiswebadaptor/rest/services/Tax_Assessment/Parcels/MapServer/42",
"name": "Property Address",
"placeholder": "310 Allen Road",
"searchFields": [
"SITUS"
],
"displayField": "SITUS",
"exactMatch": false,
"searchInCurrentMapExtent": false,
"zoomScale": 50000,
"maxSuggestions": 8,
"maxResults": 8,
"type": "query"
}, I know working with the Leaflet.js library and Esri's geocoder plugin, you can have multiple fields show in the suggested text. So I'm guessing it is possible with the JS API as well.
... View more
06-28-2018
04:39 AM
|
0
|
4
|
3381
|
|
DOC
|
Have you tried to overwrite a layer you download and it failed? If so, can you provide the error code or image of it. Line 152 is env.overwriteOutput = 1, which should allow feature classes to be ovewritten. You could also try changing 1 to "True," but I don't think that should make a different. But it also wouldn't hurt to try.
... View more
06-27-2018
12:06 PM
|
0
|
0
|
18822
|
|
POST
|
I've added a Gist on GitHub with the CSS rules for achieving this. I always create a style.css file for each WAB project, where I store the default rules in the style tag, along with my custom styles. There are two rules to achieve the result. A sample map can be found at 911 CAD Map .
... View more
06-18-2018
11:32 AM
|
1
|
0
|
6104
|
|
DOC
|
I don't see an option to open popup panel at startup. I do see a "Close this widget on widget startup" option. Even with that unchecked, I have to open the pop-up panel the first time to make it work with the Tab Theme. I'm guessing there is something I am missing?
... View more
05-07-2018
10:30 AM
|
0
|
0
|
11959
|
|
DOC
|
I'm sorry if this has been asked before, but it is not realistic to skim over 300+ comments. I'm using the popup panel widget with the Tab Theme in WAB 2.7. When I click on a feature, the popup defaults to the standard placement. If I click on the popup panel widget, it also appears there. This page seems to indicate the Tab Theme is supported. Is there a way for it to default to the popup panel widget? I've also noticed in many of the themes, after you open the pop-up panel widget for the first time, the popups then use that instead of the regular popup. Do you long-term have plans to change the widget so that the first time a popup is opened, it defaults to the popup panel widget? This is a great widget, and it would be awesome if it could be supported across themes.
... View more
04-26-2018
06:43 AM
|
0
|
0
|
11959
|
|
IDEA
|
Not sure if it's possible or hard it would be to implement, but it would be greatly beneficial to have an ArcPy utility function to release all locks on file geodatabases.
... View more
04-13-2018
12:03 PM
|
20
|
2
|
7600
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-19-2020 10:49 AM | |
| 1 | 01-24-2020 06:34 AM | |
| 1 | 05-28-2020 10:49 AM | |
| 1 | 05-19-2020 07:30 AM | |
| 1 | 05-27-2020 10:32 AM |
| Online Status |
Offline
|
| Date Last Visited |
01-13-2021
01:35 PM
|