|
POST
|
Mattias, You did exactly what you needed to do to get the localization to be Swedish. Maybe you are having a cache issue. I don't do Portal so all I can say is that it just did this in WAB Dev and it worked fine.
... View more
01-07-2021
08:02 AM
|
2
|
4
|
2812
|
|
DOC
|
Yes you can use your own elevation profile GP Service if it matches the esri services paramaters for input and output. Here is a 2014 Blog on my to produce your own service: https://www.esri.com/arcgis-blog/products/arcgis-living-atlas/analytics/setting-up-your-own-profile-service/?rmedium=redirect&rsource=blogs.esri.com/esri/arcgis/2014/08/26/setting-up-your-own-profile-service
... View more
01-05-2021
05:33 AM
|
0
|
0
|
20942
|
|
POST
|
Rex, As I do not see this in any browsers, It means that it is time for you to contact esri tech support on this.
... View more
12-30-2020
08:44 AM
|
2
|
1
|
5750
|
|
POST
|
Have you tested in more than one browser (i.e. Chrome, IE, Edge, FireFox, etc)? Could be a browser setting issue.
... View more
12-30-2020
07:19 AM
|
1
|
3
|
5752
|
|
POST
|
It is absolutely standard to have4 the proxy and the app on the same server. Otherwise you will continue to have cors issues.
... View more
12-30-2020
07:17 AM
|
1
|
0
|
4713
|
|
POST
|
Nope Never did get it to work and no one from esri responded.
... View more
12-29-2020
11:40 AM
|
0
|
0
|
4148
|
|
POST
|
If you are talking about the 4.x API then you use the view.goTo method. https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#goTo Here is a sample that shows going to the extent of certain features in a layer: https://developers.arcgis.com/javascript/latest/sample-code/sandbox/index.html?sample=featurelayer-queryextent
... View more
12-27-2020
05:28 AM
|
2
|
0
|
1884
|
|
POST
|
Rex, What version of WAB are you using? In 2.17 the default is to open in a new tab. You can see this in the code below from the PopupMenuInfo.js file in the LayerList widget. _getATagLabel: function() {
var url;
var label;
var layerUrl = this._layerInfo.getUrl();
var basicItemInfo = this._layerInfo.isItemLayer();
if (basicItemInfo) {
url = this._getItemDetailsPageUrl(basicItemInfo) || layerUrl;
label = this.nls.itemShowItemDetails;
} else if (layerUrl &&
(this._layerType === "CSVLayer" || this._layerType === "KMLLayer")) {
url = layerUrl;
label = this.nls.itemDownload;
} else if (layerUrl && this._layerType === "WMSLayer") {
url = layerUrl + (layerUrl.indexOf("?") > -1 ? "&" : "?") + "SERVICE=WMS&REQUEST=GetCapabilities";
label = this.nls.itemDesc;
} else if (layerUrl && this._layerType === "WFSLayer") {
url = layerUrl + (layerUrl.indexOf("?") > -1 ? "&" : "?") + "SERVICE=WFS&REQUEST=GetCapabilities";
label = this.nls.itemDesc;
} else if (layerUrl) {
url = layerUrl;
label = this.nls.itemDesc;
} else {
url = '';
label = this.nls.itemDesc;
}
this._ATagLabelUrl = url;
return '<a class="menu-item-description" target="_blank" href="' +
url + '">' + label + '</a>';
}, The code that set the anchor element to a new tab is this target="_blank"
... View more
12-26-2020
02:48 PM
|
2
|
6
|
5778
|
|
POST
|
Mark, When setting up you Web Map you have the opportunity to define popups for all/any of your layers in the web map. This is what I am talking about. When you setup a popup for a particular layer in the web map you can click on the map and get that configured popup for that layer(s) that are intersected at the clicked point.
... View more
12-26-2020
02:33 PM
|
0
|
0
|
2201
|
|
DOC
|
Ned, Indeed there was a file issue in the zip. I have fixed that issue now. Thanks for letting me know.
... View more
12-22-2020
09:36 AM
|
0
|
0
|
29637
|
|
POST
|
I am using Version 87.0.4280.88 (Official Build) (64-bit) of Chrome and using circle and arrow drawing tools and there is no extra graphic. I remember some people having an issue and it was hardware related, Best to call tech support on this.
... View more
12-21-2020
12:34 PM
|
0
|
1
|
4894
|
|
POST
|
I don't see any issue in Chrome using the 3.35 CDN.
... View more
12-21-2020
09:00 AM
|
0
|
3
|
4908
|
|
POST
|
Gregory, Here is what you put in the Geometries box: {
"geometryType" : "esriGeometryPolygon",
"geometries" :
[
{"rings":[[[-9187473.41276618,3188162.5654556816],[-9187434.9401002657,3188152.1212731851],[-9187437.0374417529,3188124.0742577673],[-9187478.3572086357,3188134.81423361],[-9187480.4803962763,3188136.4591659759],[-9187482.82138976,3188137.7757820026],[-9187485.32981364,3188138.7357496503],[-9187486.1791619044,3188139.3302621851],[-9187486.9202693515,3188140.0552431336],[-9187487.5333208945,3188140.8913085815],[-9187488.0019252859,3188141.8161045313],[-9187488.31355339,3188142.8049045876],[-9187488.4598731585,3188143.8312710673],[-9187488.4369724244,3188144.867761869],[-9187488.6253482066,3188149.8298659292],[-9187488.28674475,3188154.78398642],[-9187487.4249764085,3188159.674315393],[-9187486.0497509651,3188164.4457635083],[-9187484.1765602734,3188169.0445806137],[-9187473.41276618,3188162.5654556816]]]}]
}
... View more
12-21-2020
06:04 AM
|
1
|
2
|
2127
|
|
POST
|
Michael, You would add a watch on the layer view. view.whenLayerView(fLayer).then(function(layerView){
watchUtils.whenFalseOnce(layerView, "updating", function(upDone){
//The layer is done updating
});
});
... View more
12-21-2020
05:52 AM
|
0
|
1
|
1804
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-14-2020 11:36 AM | |
| 17 | 05-17-2021 01:51 PM | |
| 1 | 07-06-2020 05:32 AM | |
| 1 | 07-10-2018 05:49 AM | |
| 9 | 01-28-2022 10:58 AM |
| Online Status |
Offline
|
| Date Last Visited |
06-08-2026
06:27 AM
|