|
POST
|
Not sure if this will still work in Pro as it was authored back in 2011, but I believe this might be what you're looking for: https://www.arcgis.com/home/item.html?id=cede8ab5c0514f41a2cc69bedff67f48
... View more
02-23-2024
01:10 PM
|
0
|
0
|
1162
|
|
POST
|
Try setting an appropriate stretch before applying a colomap: https://codepen.io/john-grayson/pen/WNmqZbq
... View more
02-23-2024
12:40 PM
|
1
|
4
|
1266
|
|
POST
|
Not sure if it helps in your specific use case, but if you are using an online hosted Feature Layer I would suggest you check out the capability to create hosted Feature Layer View and it's ability to configure filters.
... View more
08-03-2023
02:41 PM
|
0
|
1
|
947
|
|
POST
|
You can also use the cimSymbolUtils to help with some of these tasks, in your use case the 'scaleCIMSymbolTo()' method.
... View more
08-03-2023
02:34 PM
|
2
|
0
|
1361
|
|
POST
|
There are many options available via the Draw tools and the Sketch and Editor widgets, but if you want 'no additional tools' then coming up with a 'very simple for the user' workflow becomes a little more complicated. Here's a quick take at one possible approach; it's not perfect but it might give you some ideas: https://codepen.io/john-grayson/pen/bGQaZom
... View more
07-12-2023
01:54 PM
|
0
|
0
|
504
|
|
POST
|
The 'content' property of the 'openPopup()' method doesn't list CustomContent as valid parameter type. For your use case you can just use a function that returns the HTMLElement directly: https://codepen.io/john-grayson/pen/BaGJMvw
... View more
07-12-2023
11:23 AM
|
1
|
0
|
983
|
|
POST
|
Another option would be to let the service perform the intersection test by passing in the dynamic feature geometry into the query; something similar to this but with all the appropriate Query parameters: const staticQuery = staticFeatureLayer.createQuery();
staticQuery.geometry = dfFeature.geometry;
staticFeatureLayer.queryFeatures(staticQuery).then((staticFeatureSet) => {
... View more
04-25-2023
11:28 AM
|
2
|
0
|
1721
|
|
POST
|
You might also want to check out the cimSymbolUtils if you're looking to change the size of the symbol. Maybe the scaleCIMSymbolTo() method will do what you need?
... View more
04-14-2023
09:17 AM
|
0
|
0
|
928
|
|
POST
|
...maybe try something like this: view.on("click", function (evt) {
if (view.scale <= 3500) {
var graphic = new Graphic({
geometry: {
type: "point",
x: evt.mapPoint.x,
y: evt.mapPoint.y,
spatialReference: view.spatialReference,
},
symbol: {
type: "web-style",
name: "push-pin-1",
styleName: "Esri2DPointSymbolsStyle"
}
});
view.graphics.removeAll();
view.graphics.add(graphic);
}
});
... View more
09-30-2022
01:54 PM
|
1
|
1
|
2054
|
|
POST
|
Hard to tell from the partial code provided. Do you have a simple CodePen (or similar) showing the issue?
... View more
09-27-2022
08:27 AM
|
0
|
1
|
785
|
|
POST
|
Please make sure to submit unrelated issues as new questions so we don't confuse things later on.
... View more
09-19-2022
03:27 PM
|
0
|
0
|
1883
|
|
POST
|
Here's that same tutorial but slightly modified to your MapImageLayer service: https://codepen.io/john-grayson/pen/VwxbgBR Please note that you can't use the individual FeatureLayer directly as some of the TimeInfo properties have not been configured.
... View more
09-19-2022
08:41 AM
|
2
|
2
|
1894
|
|
POST
|
If you're referring to the interactive navigation (vs setting a camera location via code) then the navigationContraint might help, but as you noted it won't prevent you from interactively navigating underground. If the goal is to create a guided experience close to the ground then a combination of these constraints will help.
... View more
09-08-2022
01:16 PM
|
0
|
0
|
849
|
|
POST
|
I wonder if adjusting the SceneView.constraints.clipDistance.near will help in your situation?
... View more
09-01-2022
02:37 PM
|
0
|
2
|
865
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-07-2024 04:14 PM | |
| 1 | 02-23-2024 12:40 PM | |
| 1 | 03-01-2024 10:48 AM | |
| 2 | 08-03-2023 02:34 PM | |
| 2 | 07-19-2023 12:05 PM |
| Online Status |
Offline
|
| Date Last Visited |
10-24-2024
06:01 PM
|