POST
|
The drawn shape must always be a perfect circle (equal radius in all directions), not an oval or something else. For this part of your question, you can set the tool's scale mode to Uniform, similar to this: m_ellipse_tool.Configuration.ScaleMode = GeometryEditorScaleMode.Uniform
... View more
05-12-2025
03:01 AM
|
0
|
0
|
404
|
POST
|
Yes, it's the right way. To support floor filtering, a layer needs a FloorDefinition which specifies the field of the layer to use for the filtering (i.e. the field containing the level ID)
... View more
08-13-2024
02:43 PM
|
0
|
0
|
1301
|
POST
|
Using Renderer.fromJson(string) is a reasonable approach if you don't want to use the fined grained API to create a renderer. You will find the renderer specifications and many examples of json renderers here: https://developers.arcgis.com/web-map-specification/objects/renderer/
... View more
04-29-2022
02:28 AM
|
1
|
1
|
1479
|
POST
|
PopupDefinition.Description is the definition with templated parameters. To get the value for a specific Popup, you can use PopupManager.CustomDescriptionHtml
... View more
04-29-2022
02:21 AM
|
1
|
1
|
1174
|
POST
|
You can use SetAttributeValue something like: myGraphic.SetAttributeValue("ANGLE", boat.angle);
... View more
09-07-2021
03:12 AM
|
1
|
7
|
3973
|
POST
|
If all graphics of one graphic overlay use the same symbol, you can use a SimpleRenderer based on your picture marker symbol. If the symbol is depending on an attribute you can use an UniqueValueRenderer Then you can set a rotation expression on the renderer to apply a rotation based on an expression. For example, if the expected rotation is coming from an attribute: renderer.RotationExpression = "[rotation]"
... View more
09-07-2021
01:57 AM
|
0
|
9
|
4002
|
POST
|
Your JSON string is not an ArcGIS Feature Collection. ArcGIS Feature Collections are defined here: https://developers.arcgis.com/web-map-specification/objects/featureCollection/ This is more likely an OGC feature collection.
... View more
08-23-2021
03:47 AM
|
1
|
0
|
2628
|
POST
|
'await' is missing in your code, the task is not executed yet at your debug point. var legend = await sublayer.GetLegendInfosAsync();
... View more
06-01-2021
09:39 AM
|
2
|
0
|
1439
|
POST
|
The legend is provided by sublayers so you have to get the SubLayers, loop on the sublayers, and call GetLegendInfosAsync on each sublayer (even if frequently a tiled layer has only one sublayer)
... View more
06-01-2021
07:37 AM
|
0
|
0
|
1495
|
POST
|
A KML node can't belong to multiple containers such as KML folders or KML documents. Before adding a node to a new document you have to remove it from its initial document.
... View more
10-12-2020
03:54 AM
|
1
|
0
|
1567
|
POST
|
There is no direct API allowing to create a KML dataset or a KML layer from a stream. You have to create a temporary file from your stream and to create the KML dataset/layer from this file.
... View more
03-06-2020
05:46 AM
|
0
|
0
|
1147
|
POST
|
Thanks for your feedback. Unfortunately we don't support KML photo overlays yet. I'll forward your request to the team. Happy New Year.
... View more
01-02-2019
04:02 AM
|
0
|
0
|
926
|
POST
|
By default the map scale range is set with the scale range of the first layer. This prevent from zooming at a scale where no layers are visible. You can change this behavior by setting explicitely the min/max scale of the map.
... View more
11-24-2016
09:54 AM
|
1
|
1
|
755
|
POST
|
It doesn't seem that your underlying service is a WMS service. Looks like it's a tiled layer with tiles exposed as png image e.g.: http://185.8.172.26/statics/Map/13/5255/3221.png To display it through the ArcGIS Runtime SDK for WPF you can use the WebTiledLayer provided by the toolkit. Though if you are creating a new application, I would recommend you to use the new ArcGIS .Net SDK, a WebTiledlayer is also provided by this SDK (sample)
... View more
11-26-2015
01:56 AM
|
0
|
0
|
1043
|
Title | Kudos | Posted |
---|---|---|
1 | 06-13-2013 09:22 AM | |
1 | 04-29-2022 02:21 AM | |
1 | 04-29-2022 02:28 AM | |
1 | 09-07-2021 03:12 AM | |
1 | 08-23-2021 03:47 AM |
Online Status |
Offline
|
Date Last Visited |
05-12-2025
07:39 AM
|