POST
|
I meant the ArcGIS Online release, we added a fix there and it should be available later on today.
... View more
09-21-2021
02:40 AM
|
0
|
0
|
1040
|
POST
|
Hi and sorry that you had to struggle with this. We noticed the errors you run into with some of our samples and we currently have a fix for it that should be deployed with the 9.3 release. However, those layers do not have an associated feature layer. Can you send me your exact workflow to make sure we fix the issue you run into as well? You publish the multipatch feature layer in ArcGIS Pro using "Share as web layer"? (https://pro.arcgis.com/en/pro-app/latest/help/sharing/overview/web-scene-layer.htm)
... View more
09-20-2021
09:36 AM
|
0
|
0
|
1054
|
POST
|
ok, draw tool works in 3D as well: https://codepen.io/ralucanicola/pen/powWJLd?editors=100 Can you be more specific about the issues you encounter? A code snippet or a codepen with an example is always the best to figure out where the problem comes from.
... View more
09-14-2021
07:56 AM
|
0
|
0
|
885
|
POST
|
Hey, there is no Draw widget in the ArcGIS JS API. Do you mean the Sketch widget? here's an example in 3D: https://codepen.io/ralucanicola/pen/WNOOZdd
... View more
09-13-2021
03:01 AM
|
0
|
2
|
918
|
POST
|
hey, an improvement would be to define the symbols using the class and not by autocasting. When using a class it will reuse the symbol instance for each graphic and when you use autocasting it will create a new symbol and that might lead to poor performance. I updated your app here: https://codepen.io/ralucanicola/pen/wveGxQm?editors=1000 can you try it out and let us know how it performs for you?
... View more
09-02-2021
02:57 AM
|
0
|
0
|
956
|
POST
|
We don't really have anything like that out of the box in 3D at the moment.
... View more
09-01-2021
12:12 PM
|
1
|
0
|
856
|
POST
|
I updated the doc in the meantime to say that only the first non draped icon is returned from a hit test. https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#hitTest
... View more
09-01-2021
11:12 AM
|
1
|
0
|
1205
|
POST
|
As Rene mentioned, clustering is not supported in a sceneview and it's on our feature list, but it's not planned for this year.
... View more
07-27-2021
04:29 AM
|
1
|
0
|
1274
|
POST
|
So if you create a webscene and then set it on the view, the api internally calls the `load` method once it's set on the map property of the view. If then you call `webscene.when` that should run the callback you're passing exactly when the load method resolves. const webscene = new WebScene(...);
const view = new SceneView({
...
map: webscene
});
webscene.when(() => {
// now you have access to layers, ground and basemap
}); The load method however, doesn't load all the loadable resources/sublayers etc. Slides might also not be ready depending on how heavy your scene is. So I'd advise you to use `loadAll()` to wait for all the resources like John showed in his example: map.loadAll().then(() => {
// the scene is now fully loaded and you can create the view, the slides, set properties on layers etc.
// you don't need map.when() anymore
// you can use view.when() if you want to make sure that the view is ready. In case you make changes before this point, they might get overriden when the map is set on the view.
})
.catch((err) => console.log(err));
... View more
07-15-2021
04:12 AM
|
2
|
0
|
2514
|
POST
|
Hi Michael, sorry for the late reply. You can use a point feature layer with size/rotation attributes and ObjectSymbol3DLayer symbology. From what I understand from you, editing is the functionality you are looking for to persist the size/rotation/position values. Check out our editing sample, this does what you need as far as I understand: https://developers.arcgis.com/javascript/latest/sample-code/widgets-editor-3d/ You'd need to store the gltf somewhere on the server to be able to use them as symbols. Let us know if you have more questions.
... View more
07-14-2021
10:25 AM
|
0
|
0
|
4097
|
POST
|
when you check the webscene json, are the visible layers in the slides or are they missing? For the example that you shared, they would look like this: https://aam-ags-demo-03.aamgeocloud.com/portal/sharing/rest/content/items/9a5c8855529c4109b53032084bf5bdb5/data?f=json {
"id": "177ff571076-slide-2",
"title": {
"text": "Sydney 7.5cm Photo Mesh Model 2020"
},
...,
"visibleLayers": [
{
"id": "17964079d27-layer-17"
},
{
"id": "177fc6aa2cb-layer-0"
}
]
},
... View more
07-14-2021
09:00 AM
|
1
|
3
|
2528
|
POST
|
This is correct, you can't highlight 2 features with different colors simultaneously. And yes, a workaround is to create a new graphic that highlights the feature. For ideas see the third style in this blog post: https://www.esri.com/arcgis-blog/products/js-api-arcgis/3d-gis/feature-selection-styles-in-web-scenes/ Let us know if need advice or help with this.
... View more
07-14-2021
07:57 AM
|
1
|
0
|
2902
|
POST
|
So sorry for the late reply. We don't have a swipe widget in 3D and it's not in our near future plan. I made a little demo on how to fake it with 2 scenes and css but it is definitely not a bullet proof solution: https://ralucanicola.github.io/JSAPI_demos/scene-swiper/
... View more
07-14-2021
06:56 AM
|
2
|
0
|
1288
|
POST
|
Hi @SeanGrant3 This is still not on our near future road map, sorry that I can't give you better news.
... View more
06-29-2021
08:55 AM
|
0
|
0
|
857
|
POST
|
Hey, not for 4.20 😞 but the good news is that we will work on it very soon. I'll ping everyone in this thread once we have it implemented.
... View more
05-19-2021
03:39 AM
|
0
|
0
|
831
|
Title | Kudos | Posted |
---|---|---|
1 | 01-24-2024 04:54 AM | |
2 | 01-23-2024 02:52 AM | |
3 | 01-19-2024 12:49 AM | |
4 | 03-27-2023 10:34 AM | |
7 | 03-13-2023 08:00 AM |
Online Status |
Offline
|
Date Last Visited |
12-11-2024
03:39 PM
|