|
POST
|
Hi there, This issue is fixed at version 4.21 and it is planned to be released end of September. You can test the fix by pointing your app to <script src="https://js.arcgis.com/next/"></script>. Thanks for reporting this issue, -Undral
... View more
08-17-2021
12:35 PM
|
0
|
1
|
1749
|
|
POST
|
HI there, You cannot directly use Map object to display messages. You can display messages on your map with the use of HTML element like div. For example, in this simple test app, you will see a message at the bottom left corner of the map whenever you click on the map. Hop this helps, -Undral
... View more
08-17-2021
09:52 AM
|
0
|
0
|
1195
|
|
POST
|
Hi there, This cannot be done with out of the box timeslider widget. We have an enhancement to animate the data in reverse order. When this implemented you can the set the timeslider to play the animation in reverse order starting from the end/latest date. -Undral
... View more
08-16-2021
09:07 AM
|
0
|
0
|
936
|
|
POST
|
Hi there, You should be able to set the top margins to negative numbers to have those ticks and labels above the bar line. Perhaps something like this could work? I made css changes using your test code. Hope this helps, -Undral
... View more
08-16-2021
08:15 AM
|
1
|
0
|
2487
|
|
POST
|
Hi there, Is it possible for you to share your service with me? It would help to narrow down the issue. If not then, can you please tell me if it is enterprise of hosted feature service? If enterprise then what version of the server are you using? Thanks, -Undral
... View more
08-04-2021
01:39 PM
|
0
|
1
|
3060
|
|
POST
|
Hi there, Your codepen has an issue. You are directly assigning the symbol the layer's renderer. If you open the console you will see the error. Here is your codepen app updated. The changes are: const renderer = {
type: "simple",
symbol: symbol
};
var fl = new FeatureLayer({
source: features,
renderer: renderer, // change this from symbol to renderer
...
}); Hope this helps, -Undral
... View more
08-04-2021
01:35 PM
|
0
|
0
|
2745
|
|
POST
|
Hi there, If you have time please watch this technical presentation as you may find it very helpful. https://www.esri.com/videos/watch?videoid=0pnhHeQB4bQ&title=arcgis-api-for-javascript-data-driven-animations Apps used in the presentations: https://github.com/ekenes/conferences/tree/master/ds-2021/data-driven-animations/demos https://github.com/ubatsukh/arcgis-js-api-demos/tree/master/devsummit2021 Also a few helpful blogs on the subject: https://www.esri.com/arcgis-blog/products/js-api-arcgis/mapping/six-ways-to-visualize-change-over-time-in-web-maps/#animations https://www.esri.com/arcgis-blog/products/js-api-arcgis/mapping/animate-and-explore-covid-19-data-through-time/ Hope this helps, -Undral
... View more
08-02-2021
12:44 PM
|
1
|
0
|
1851
|
|
POST
|
Hi there, Just a quick note on the parameterValues. This parameter can only be used with ArcGIS map service that was published from a query layer. We will update the document to clarify this point. This document talks about how to create a query layer in ArcGIS Pro and this rest api doc explains what parameterValues is. Hope this clarifies what parameterValues does. -Undral
... View more
08-02-2021
12:14 PM
|
0
|
0
|
2551
|
|
POST
|
Hi there, I just want to let you know that we fixed this issue at the JS API version 4.20. The version 4.20 will be released at the end of June (2021). Thanks, -Undral
... View more
06-15-2021
03:36 PM
|
0
|
0
|
9776
|
|
POST
|
Hi there, This issue will be fixed at JS API version 4.20 which will be released end of June 2021. -Undral
... View more
06-07-2021
11:04 AM
|
0
|
2
|
9563
|
|
POST
|
Hi there, The original issue (where a client side remap raster function with unique value renderer was reverting to default) is fixed at 4.20. The version 4.20 is expected to be released end of June. We relaxed the internal checks to allow setting unique value renderer on top of raster functions. In your app you need to do couple of changes to get it working. Set the renderer field Set the pixel type for the raster function. I updated your test app to use the `next` version of the api that show cases the fix: https://codepen.io/U_B_U/pen/mdWeaor?editors=1000 I will take a look at this issue: https://community.esri.com/t5/arcgis-api-for-javascript/cannot-apply-uniquevaluerenderer-to-imagerylayer-at-arcgis/m-p/1059167/highlight/true#M73169 -Undral
... View more
05-27-2021
09:17 AM
|
2
|
0
|
7414
|
|
POST
|
Hi there, Yes, the issue exists because of the combination of the version of your arcgis server and lerc decoder used for the older services in the JS API. With that, we fixed this issue at JavaScript API version 4.20. This version will be released late June 2021. Hope this helps, -Undral
... View more
05-20-2021
03:13 PM
|
1
|
2
|
7027
|
|
POST
|
Hi there, Map.allLayers returns collection of ALL layers including basemap and ground layers. Do you mean to re-order absolutely all layers in your map? If you are re-ordering layers using this collection, your operational layers maybe being moved underneath the basemap layers. Map.layers will give you collection of operational layers (the layers drawn on top of basemap and ground layers). -Undral
... View more
05-20-2021
01:11 PM
|
0
|
1
|
2037
|
|
POST
|
Hi there, I can reproduce the issue you described with this service only. The other two services are loading and displaying as expected. In any case, I created an issue for the service that is throwing an error due to lerc decoding. In short, you are running into this issue because your server version is old (10.41). We have done our tests on 10.5 and later servers. If you upgrade your server, you will be able to use your services successfully in JS API 4.19. I modified your test app slightly so that the other two services are displaying. I will update you once we fix this issue. Hope this helps, -Undral
... View more
05-19-2021
12:22 PM
|
1
|
1
|
7041
|
|
POST
|
Hi there, I want to give you a quick update on this issue. At version 4.20, we added a new property called `featurePerPage` on popupViewModel. The version 4.20 will be released late June 2021. But you can test this property on our `next` version. You can see this property in action in this test app: https://codepen.io/U_B_U/pen/jOBVKKy?editors=100 The following is how you set this property. var view = new MapView({
container: "viewDiv",
map: map,
zoom: 5,
center: [-107.3567, 37.7705],
popup: {
viewModel: {
featuresPerPage: 1
}
}
}); -Undral
... View more
05-19-2021
09:25 AM
|
0
|
1
|
6126
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-17-2025 03:29 PM | |
| 1 | 07-09-2025 08:48 AM | |
| 2 | 07-08-2025 08:09 AM | |
| 2 | 07-07-2025 03:57 PM | |
| 1 | 06-11-2025 03:25 PM |
| Online Status |
Offline
|
| Date Last Visited |
12-01-2025
08:03 AM
|