|
POST
|
Hi there, Sorry for the delay. What you are seeing is an expected behavior. If you are setting sublayers then you have to set the min/maxscale for them. Otherwise, they will use the parent layer's min/maxScale. For example, the parent layer's min/maxScale 0 then your sublayer will have min/maxScale of 0. If you add the parent layer without setting sublayers then min/maxscale is honored for all layers. For example, I updated the test app just to add the mapimagelayer without setting sublayers... in this case, the min/maxscale are read from the mapservice. Hope this makes sense, -Undral
... View more
04-20-2018
02:59 PM
|
1
|
1
|
951
|
|
POST
|
Hi there, I could be missing the point you are making. Can you please take a look at this app? LayerList is behaving as expected from what I see: https://codepen.io/anon/pen/zjxRaP?editors=1000 The layers become visible at scale 288895.277144 and larger scales. Greyed out otherwise. The min scale for the your layers are specified as Min Scale: 288896. Can you please give me a simple reproducible case? Thank you,
... View more
04-19-2018
07:49 AM
|
0
|
6
|
2115
|
|
POST
|
This issue described here is fixed and here is a simple test app. An Anonymous Pen on CodePen
... View more
04-18-2018
01:15 PM
|
0
|
8
|
2115
|
|
POST
|
Hi there, I looked at the test application you had. As Robert pointed out you are using autocasted polyline. It won't work in this case because it is not `Polyline` object. So as he suggested you need to create a new instance of `Polyline` or you can directly work with the `Graphic.geometry`. Here is a modified SDK sample that uses `getPoint ` and `inserPoint` methods on Polyline. https://codepen.io/anon/pen/LeOYVZ?&editors=100 If you are still running into problems can you please give a snippet code that reproduces the issue you are running into? Thank you
... View more
01-05-2018
11:15 AM
|
1
|
0
|
3899
|
|
POST
|
If you are loading the vectortilelayer using the json object you provided in the zip file then the vectortilelayer wont load because vector tile source url is not defined in the style object. The style json object must have the fully qualified url for the tiles if you are loading your vector tile layer from the style object. If you create a vector tile layer from style url or service url then we find the required resources using relative paths. hope this makes sense.
... View more
12-15-2017
02:52 PM
|
2
|
2
|
2685
|
|
POST
|
Hi there, You can use wgs84 esri vector basemaps. Pick one of the webmaps and set your Map's basemap as shown below: var map = new Map({
basemap: {
portalItem: {
id: "8dda0e7b5e2d4fafa80132d59122268c" //Streets (WGS84)
}
}
});
... View more
12-15-2017
01:36 PM
|
1
|
0
|
2933
|
|
POST
|
Hi Mike, SketchViewModel.complete() method will be available as of 4.6 not 4.7. Hopefully this is good news.
... View more
12-12-2017
11:04 AM
|
1
|
1
|
1038
|
|
POST
|
This issue will be resolved in our next release (4.6).
... View more
12-12-2017
10:46 AM
|
2
|
0
|
899
|
|
POST
|
Hi Jared, Looking at your code, you are not adding the featureLayer to the view so it is the developer's responsibility to load the layer. Please take a look at the doc for the FeatureLayer.load(): https://jscore.esri.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#load fl.load().then(function(){ console.log("layer loaded"); }); Hope this helps, -Undral
... View more
12-12-2017
10:44 AM
|
1
|
0
|
3990
|
|
POST
|
Hi Tor, We will continue to improve usability of Draw and SketchViewModels in future releases. Thank you for your feedback and will definitely integrate it into draw and sketch.
... View more
12-06-2017
09:26 AM
|
0
|
1
|
1784
|
|
POST
|
Hi there, We will keep improving user experience on mobile devices. At 4.7, SketchViewModel will have a new method called `complete` which you can call to complete the active drawing and fire `draw-complete` event. I hope you will find this method useful.
... View more
11-16-2017
01:09 PM
|
1
|
3
|
1038
|
|
POST
|
Hi Jordan, Have you tried the app with 4.4 or 4.5? The rotation support is in. I am still not able to reproduce the issue with visible layers.
... View more
10-30-2017
09:29 AM
|
0
|
0
|
1903
|
|
POST
|
Hi Jordan Baumgardner and David Plume, So I failed to check on the issues that Jordan brought up. I apologize for that. Here is a really simple application that prints webmap using print widget (which uses printtask) and I am not able to reproduce the issue. https://codepen.io/anon/pen/gXOPmP?&editors=100 Is it possible for one of you two share a simple test case with me? Or the webmap in question. If you cannot create a simple test case, then can you copy and paste the part where printparameters are being set. If you cannot share your webmap, then can you please give some ideas what kind of layers you have in the webmap and if min/max scales are being set for the layers. Thank you, -Undral
... View more
10-27-2017
01:56 PM
|
0
|
2
|
1903
|
|
POST
|
Hi Jeff, Sorry for the really late reply. I was out of the office for a while. Anyhow, thank you for the descriptions and reproducible cases. I was able to reproduce different behaviors you reported. I created issues for these. You can workaround the MapView's initial extent issue by setting the initial extent when the view is loaded as shown below. view.then(function(){ var extent = new Extent({ xmin: 730000, ymin: 800000, xmax: 775000, ymax: 870000, spatialReference: 2868 }); view.extent = extent; }); As for the legend widget visibility, you can use the CSS to toggle legend visibility as shown below: <style> .my-hiding-class { display: none; } </style> function toggleLegend() { legendVis=!legendVis; togLegend.container.classList.toggle("my-hiding-class", legendVis); } Hope this helps, -Undral
... View more
07-20-2017
04:01 PM
|
0
|
1
|
1548
|
| 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
|