|
POST
|
Is there a way to use Portal (V 10.81) To Analyze the Layers that are added as WFS ? For example, I wanted to Clip a WFS Layer (layer added via WFS dialog) based on a ESRI Feature Layer Is it possible ?
... View more
05-23-2022
11:57 AM
|
0
|
1
|
837
|
|
POST
|
Thank you @KristianEkenes . We will probably have to make one custom legend. Thanks again.
... View more
02-17-2022
03:33 PM
|
0
|
0
|
1720
|
|
POST
|
Is there a way to display deck.gl based layers Legend under Legend Widget ? Example one below. Can the legend display a renderer for it? https://developers.arcgis.com/javascript/latest/sample-code/custom-lv-deckgl/
... View more
02-17-2022
02:23 PM
|
0
|
2
|
1743
|
|
BLOG
|
Is there a way to display deck.gl renderers under Legend Widget. tried to apply a renderer after layer is rendered but it don't work ?
... View more
02-17-2022
02:21 PM
|
0
|
0
|
676
|
|
POST
|
Hello, How do you get the imagery services working with TimeSlider widget Was trying to follow this example https://developers.arcgis.com/javascript/latest/sample-code/widgets-timeslider/ with the below service https://idpgis.ncep.noaa.gov/arcgis/rest/services/radar/radar_base_reflectivity_time/ImageServer Also tried to load it as a ImageryLayer, but slider looks disabled due to the wrong start , end and stop values. "esri/layers/ImageryLayer", //"esri/layers/ImageServiceParameters" ], (Map, MapView, FeatureLayer, TimeSlider, Expand, Legend, ImageryLayer) => { const layer = new ImageryLayer("https://idpgis.ncep.noaa.gov/arcgis/rest/services/radar/radar_base_reflectivity_time/ImageServer");
... View more
12-09-2021
06:22 AM
|
0
|
1
|
1167
|
|
POST
|
Thank you Calvin. We configured internal services for below items. Printing , Geometry Could it be done in future ESRI release that the custom services could be configured as a Utility Services and we could use Portal Object from ESRI JS API portal.helperServices and access the services? Thanks, Shailesh
... View more
02-02-2021
07:27 AM
|
0
|
0
|
1343
|
|
POST
|
Hello, Is it possible to add your own custom geoprocessing services to the Utility Services?https://enterprise.arcgis.com/en/portal/latest/administer/windows/configure-services.htm I see the Standard list such as Printing, Geometry etc. But let say, if I have a Custom GP , RouteEnhancer. Could I publish that Toolbox and be able to list it under Utility Services page of the ArcGIS Portal? Thanks and Regards, Shailesh Gavathe
... View more
01-29-2021
01:25 PM
|
0
|
3
|
1390
|
|
POST
|
Hello, Using ArcGIS JS API 4.18. Working on getting the HeatMap Slider, the heatmap slider does get displayed but for some odd reason, the High bar is stuck and it gives the following error under Console. div had a div child added, but there is now more than one. You must add unique key properties to make them distinguishable. Error happens under this event, heatmapslider.on(["thumb-drag","thumb-change"] Here is a snippet of code that I am trying to accomplish it with. const [HeatmapSlider, heatmapRendererCreator] = await loadModules<[typeof import("esri/widgets/smartMapping/HeatmapSlider"), typeof import("esri/smartMapping/renderers/heatmap")]> (['esri/widgets/smartMapping/HeatmapSlider', 'esri/smartMapping/renderers/heatmap']); let heatmapslider: any = undefined; //<label class="form-label">Heat Map Slider</label> Heat Map Slider let divtofind = Array.from(document.querySelectorAll('label')) .find(el => el.textContent === 'Heat Map Slider'); divtofind!.insertAdjacentHTML('afterend', '<div class="esri-heatmap-slider-div-outer" id="' + uniqueDivId +'"></div>'); if(heatmapWidgetFind){ (heatmapWidgetFind as __esri.Widget).destroy(); } heatmapslider = new HeatmapSlider({ stops: DEFAULT_STOPS }); // Typical usage heatmapslider.container = uniqueDivId; heatmapWidgetFind = heatmapslider; // when the user slides the handle(s), update the renderer // with the updated color stops heatmapslider.on(["thumb-drag","thumb-change"] , function() { const heatmapLayer = inputLayer as __esri.FeatureLayer; if(heatmapLayer){ const renderer = (heatmapLayer?.renderer as __esri.HeatmapRenderer).clone(); renderer.colorStops = DEFAULT_STOPS as __esri.HeatmapColorStop[]; heatmapLayer.renderer = renderer; } }); Thanks
... View more
01-29-2021
06:03 AM
|
0
|
0
|
794
|
|
POST
|
Found the workaround by Intercepting the request with esriConfig. if(esriConfig){ esriConfig?.request?.interceptors?.push({ // set the `urls` property to the URL of the print service so that this // interceptor only applies to requests made to the print service URL before: function(params) { if (params.url.includes("Print")) { params.requestOptions.query.Layout_Template = "customtemplate"; } } }); }
... View more
12-17-2020
12:39 PM
|
0
|
0
|
1552
|
|
POST
|
Thanks ReneRubalCava. Upgraded to 4.17. Unfortunately the Error still exist? Used below packages "@arcgis/webpack-plugin": "4.17.5", "@types/arcgis-js-api": "4.17.0",
... View more
12-14-2020
01:05 PM
|
0
|
0
|
1592
|
|
POST
|
Hello, Not sure, how to fix this one particular issue. Published the custom print python tool for the Custom Layout (pagx) files by following the guidelines https://enterprise.arcgis.com/en/server/latest/create-web-apps/windows/tutorial-publishing-additional-services-for-printing.htm Able to see the new Template options under Print Tool, but when we try it to print it, it gives the below error. [esri.core.Accessor] Accessor#set 'Custom_Quicklook_Template_11x17_105' is not a valid value for this property, only the following values are valid: 'map-only', 'a3-landscape', 'a3-portrait', 'a4-landscape', 'a4-portrait', 'letter-ansi-a-landscape', 'letter-ansi-a-portrait', 'tabloid-ansi-b-landscape', 'tabloid-ansi-b-portrait' Then added the extend to the TemplateOptions from Accessor but the error still exist. export interface TemplateOptions extends __esri.Accessor { layout: | "map-only" | "a3-landscape" | "a3-portrait" | "a4-landscape" | "a4-portrait" | "letter-ansi-a-landscape" | "letter-ansi-a-portrait" | "tabloid-ansi-b-landscape" | "tabloid-ansi-b-portrait" | "Custom_Quicklook_Template_11x17_105"; /** * When `false`, the legend is not displayed on the printout. * * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-TemplateOptions.html#legendEnabled) * * @default true */ } Thanks and Regards, Shay
... View more
12-14-2020
11:50 AM
|
0
|
3
|
1609
|
|
POST
|
Never Mind. Figured out what the issue was with this one. Make sure you provide a correct oid_fields fields to map to when you send it to below function. MakeQueryLayer(input_database, out_layer_name, query, {oid_fields}, {shape_type}, {srid}, {spatial_reference}, {spatial_properties}, {m_values}, {z_values}, {extent})
If you need to know more about Postgres ESRI Implementation. Please follow the discussion here Support for PostgreSQL 11 by Marco Boeringa.
... View more
10-16-2020
09:32 AM
|
0
|
0
|
1019
|
|
POST
|
Hello, Was wondering, if there is a limitation on statistics feature under ArcGIS 10.7? We made Materialized Views and publish them with query layer but come to see the below flag under Rest end point? Is statistic/calculations not supported for service publish this way? Supports Calculate: false Thanks in advance, Shay
... View more
10-15-2020
05:36 AM
|
0
|
1
|
1062
|
|
POST
|
Been able to solve it following the guideline here. https://community.esri.com/thread/190275-group-layers-in-the-layerlist-widget Thank you ....
... View more
03-31-2020
02:09 PM
|
0
|
0
|
1070
|
|
POST
|
Anyone had a success grouping a layer like one below in the version WAB 2.15 ? Grouped layers w/ layers reversed · GitHub Been trying to make a group layer using the code above, the layers are being added to the LayerList but not in the Group Folder like the code supposed to? Thank you
... View more
03-31-2020
09:25 AM
|
0
|
1
|
1189
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-17-2025 07:12 AM | |
| 1 | 08-25-2023 12:14 PM | |
| 1 | 06-05-2023 07:19 AM | |
| 1 | 08-01-2022 10:50 AM | |
| 1 | 06-04-2015 12:29 PM |
| Online Status |
Offline
|
| Date Last Visited |
08-26-2025
01:18 PM
|