|
POST
|
Hi there, This issue will be fixed at version 4.16 which is planned to be released sometime in early July. -Undral
... View more
06-27-2020
08:03 PM
|
1
|
0
|
4319
|
|
POST
|
Hi there, Can you please explain what is being not being displayed? You have so many options going on and it is hard to keep track of what is happening. Thanks, -Undral
... View more
06-22-2020
08:54 AM
|
0
|
0
|
721
|
|
POST
|
I am not clear what you are trying to achieve. You are replacing the url of your csvlayer and the last url will win. You should be create a new csvlayer. this.csvLayer.url=rec;
... View more
06-22-2020
08:53 AM
|
0
|
1
|
1529
|
|
POST
|
HI there, Please take a look at this simple test app. I am adding two csvlayers to the view in this app. Hope this helps, -Undral
... View more
06-19-2020
08:33 PM
|
0
|
0
|
1529
|
|
POST
|
Hi there, Thank you for the detailed explanation and reproducible case. It made is easy to track down the issue. You discovered an issue in the API. We will get this issue fixed and I will let you know once it is fixed. So the problem you are running into is this. You are setting the renderer on the server side for an ImageryLayer via its raster functions. We are not converting the statistics object to the server side statistics properly. The renderer will work as expected if you change your statistics definition from: statistics: [{
min: 500, //CHANGE ME, SEE IF COLORS CHANGE
max: 3000 //CHANGE ME, SEE IF COLORS CHANGE
}], To: //min, max, avg, stddev
statistics: [[500,3000, 1000, 505]] Hope this helps and thanks for bringing this issue to our attention. -Undral
... View more
06-16-2020
06:19 PM
|
3
|
2
|
5501
|
|
POST
|
Hi there, This error: Uncaught (in promise) TypeError: Cannot read property 'graphic' of undefined at (pointing to this line })[0].graphic; ) is telling you that your hitTest result is not defined. Looking at the code, you are only getting the first result returned from the hitTest. Instead you should loop through all results came back from the hitTest until you find the feature you are looking for. See the example below. view.hitTest(event).then(function(response) {
var results = response.results;
// Check if a feature from the featurelayer was clicked on
results.forEach(function(result) {
if (result.graphic && result.graphic.layer === featureLayer){
// do something
}
});
}); This sdk sample shows you how to loop through results of hittest. Hope this helps, -Undral
... View more
06-10-2020
07:58 PM
|
0
|
1
|
8156
|
|
POST
|
Hi there, Unfortunately, it is not possible. Developers can change the pixels any which way they want with the use pixel filter. So it is too hard to count for all the different changes made via pixel filter. -Undral
... View more
06-09-2020
03:44 PM
|
0
|
1
|
1615
|
|
POST
|
Hi there, I am able to reproduce the issue you described. We have created an issue for this and will let you know as soon it is fixed. In meantime, you can use graphicsLayer with multipoint geometries. Thank you, -Undral
... View more
06-09-2020
03:39 PM
|
0
|
1
|
4319
|
|
POST
|
Hi there, Currently, the expressions (Expressions | Mapbox GL JS | Mapbox ) are not in ArcGIS platform. It will be added but I do not have timeline information. -Undral
... View more
05-28-2020
10:05 AM
|
0
|
1
|
1059
|
|
POST
|
Hi there, It cannot be done. However, you can disable the reshape operation while only leaving the transform operation enabled as shown below: const sketch = new Sketch({
layer: layer,
view: view,
creationMode: "update",
defaultUpdateOptions: {
toggleToolOnClick: false,
tool: "transform"
}
}); Here is a test app shows how it is done: https://codepen.io/U_B_U/pen/ExVBvZK?editors=1000 Hope this helps, -Undral
... View more
05-28-2020
09:24 AM
|
1
|
1
|
1353
|
|
POST
|
Hi there, Thank your for reporting this issue. This issue is not related to portalItem. The issue is related to vector tile basemaps. I have created an issue for this and will let you know once we fix it. Thanks again for bringing this issue to our attention, -Undral
... View more
05-13-2020
12:03 PM
|
2
|
0
|
1814
|
|
POST
|
Hi there, Currently, in 2D MapView we do not fetch z values on the client-side (LayerView geometries do not have the z values) even if you set the FeatureLayer.returnZ to true (which you have to set to true if you want to fetch the z values on the client side). We have an issue for this. In meantime, you can query the layer instead of layerView to get the z values. So please change the line 53 in your test code to layer.queryFeatures(query)... this will make a network request to the service and service will honor your request for z values. -Undral
... View more
05-12-2020
10:40 AM
|
2
|
1
|
1699
|
|
POST
|
Hi there, Based on your code snippet, you have different names for your layerView variable (streamLayerView, layerView). That probably is the root of your problem. I updated the 4.15 SDK sample to query features from a stream layer view and it is working as expected. -Undral
... View more
05-12-2020
10:25 AM
|
0
|
0
|
1609
|
|
POST
|
Hi there, There is a sample as Robert Scheitlin, GISP pointed out. The sample will let you create a point and will select it for an update operation once it is created. If you just want to create it then you can set the sketch.creationMode property to single. Please refer to the Sketch.creationMode for possible values you can set for it. -Undral
... View more
05-12-2020
10:13 AM
|
2
|
0
|
2167
|
|
POST
|
Hi there, You are running into a known issue. The popup will display info for all overlapping features at this time. We are aware of this issue and will have a solution in a future release. I will let you know once we have a fix for this. -Undral
... View more
05-06-2020
10:41 AM
|
0
|
0
|
799
|
| 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
|