|
DOC
|
Sorry Robert, I should clarify something here. Yes, the popup works ok, but it requires one more click. What I am trying to do is when the user defines a location, then map will draw the point and at the same time to display the pop up panel to show some info about that location. Currently, the script draws the point but it requires the user to click one more time on the point to see the pop up. So, I tried to programmatically fire map's click event so I can display the popup but it doesn"t: Suggestions? Thank you. this.map.emit('click', {mapPoint: thePoint});
... View more
03-12-2018
10:36 AM
|
0
|
0
|
12052
|
|
POST
|
Hello Robert. Can we use this tool without arcgis online? I imported a feature service from our arcgis server that it was published with the extract task enabled. Then, I open this tool and the imported layer was listed in the "Layers to extract". I defined an area for extraction to a shapefile. It failed. Do we need to need hosted layers only in arcgis online? This tool works only with credit$? Thank you.
... View more
03-08-2018
03:51 PM
|
1
|
0
|
2329
|
|
DOC
|
Am I missing something? The popup widget does not show. Thanks. var thePoint = new Point(mylongPM, mylatPM);
PMinfoTemplate = new InfoTemplate("PM Results", content);
var thegraphic = new Graphic(thePoint, symbolfoundstart);
thegraphic.setInfoTemplate(PMinfoTemplate);
this.map.graphics.add(thegraphic);
... View more
03-08-2018
12:15 PM
|
0
|
0
|
12052
|
|
POST
|
Does anyone else experience this behavior in Layer List after you import a local KML file using the Add Data widget? I tried several KML files and each time the Layer List list the layer three times.
... View more
03-07-2018
03:19 PM
|
0
|
0
|
460
|
|
POST
|
Beginning with Web appbuilder 2.7 you can read local KML through the AddData widget. So, refer to the AddFromFilePane.js how is done.
... View more
02-22-2018
09:11 AM
|
2
|
0
|
2583
|
|
DOC
|
The workflow is to click on the a location on the map, it will record the lat long of the point, place a graphic at point and display the popup window with point lat long and other info. With the InfoTemplate, and Popuptemplate, it takes another click on that point to display the popup. The popup widget works great for features already on the map.
... View more
02-15-2018
01:53 PM
|
0
|
0
|
15296
|
|
DOC
|
Well, that explains it. I have the popup widget installed on the app and it works great. However, I created a widget where users can just click on the map and see a popup of the lat long an other info of the clicked point. It seems that because it is an infowindow is not displayed because of the popup widget, and the popup widget is not displayed because of the infowindow. Any suggestions?
... View more
02-15-2018
12:00 PM
|
0
|
0
|
15295
|
|
DOC
|
Hello Robert. I noticed that if I use infoWindow the popup widget does not work but when I use the infotempate it does work. Is that intentional? Thanks.
... View more
02-15-2018
11:35 AM
|
0
|
0
|
15295
|
|
POST
|
It is frustrating when you access the ESRI's web-appbuilder developer webpage for bugs and they have no entries for reported bugs since last year!!! Esri Support Search-Results Click on the link above and select "Past Year" from the "SORT" dropdown. You will see reported bugs only if you select "Any time" but the bugs are for older versions of WAB.
... View more
02-14-2018
10:16 AM
|
1
|
0
|
3845
|
|
DOC
|
The problem will persist. I downloaded previously the widget from the app as you suggested and it won't work. The issue is very well known among the Google Earth forums and the only way to resolve it, is to apply the changes to the Chrome browser as I indicated on a separate post. I tried those changes and it works! However, I chose not to include that widget in my app, since it will require the users to make changes in their browser. Not all users are inclined to make changes to their configurations, if they are not already restricted to do so from their own IT policy.
... View more
02-06-2018
01:16 PM
|
0
|
0
|
16951
|
|
DOC
|
ok. Let me know how is working out for you. I tried the web storage and I found it too problematic because it depends on the browser, the cache and other factors. At least by saving the json file, it allows you to send the json file to a colleague so you can collaborate on your work.
... View more
02-01-2018
11:03 AM
|
1
|
0
|
17836
|
|
DOC
|
You can also save the session (custom drawings, all operational layers including imported local shapefile, current basemap) to a local file instead of relying on browser web storage). I modified the widget to do just that. https://community.esri.com/docs/DOC-10878-savesession1017zip
... View more
01-31-2018
02:18 PM
|
1
|
0
|
17836
|
|
POST
|
I have problems using this theme as well. The icons for the widget groups don't appear below where they are supposed to be... I never had problems updating an app from one version of WAB to the newer version, but this time there is an obvious issue.
... View more
01-29-2018
10:49 AM
|
1
|
2
|
3845
|
|
POST
|
How many times I kept checking the define array only just now saw that I just switched the order. Thank you Robert.
... View more
01-18-2018
02:01 PM
|
0
|
0
|
2296
|
|
POST
|
The addData widget it defines the AddFromURLPane "./search/AddFromUrlPane", and it initializes the wabWidget by: this.addFromUrlPane = new AddFromUrlPane({
wabWidget: this
},this.urlNode); What I am trying to do is to add wms layer. So, I used the script posted below. I defined the LayerLoader,js and utils.js and "esri/layers/WMSLayer" but I get the error: Based of what I read, the error is caused by proxy. However, I already setup the proxy and the question is how the addData works if there is a problem with proxy? addWMSLayerToMap: function() {
var url="https:/xxx/wms"
var loader = new LayerLoader();
var id = loader._generateLayerId();
var self = this,
layer = null;
layer = new WMSLayer(url, {
id: id
});
loader._waitForLayer(layer).then(function(lyr) {
//console.warn("_waitThenAdd.ok",lyr);
//var templates = null;
loader._setWMSVisibleLayers(lyr);
lyr.xtnAddData = true;
this.map.addLayer(lyr);
})
},
... View more
01-18-2018
01:12 PM
|
1
|
3
|
2296
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-09-2026 12:44 PM | |
| 1 | 06-08-2026 12:12 PM | |
| 1 | 06-19-2025 10:13 PM | |
| 3 | 02-06-2026 10:44 AM | |
| 1 | 01-08-2026 12:50 PM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|