|
POST
|
It is difficult to suggest anything without looking at how you are creating your multilayer point symbol. A MultilayerPointSymbol can only be created from a collection of symbollayers. You can not directly add a simple marker symbol to a Multilayer unless you convert that simple marker symbol to a multilayersymbol. I am happy to help further if you can provide some code you are using to create multilayerpointsymbol and perhaps some screenshots when those symbols are rendered on the map. --Preeti
... View more
09-27-2022
10:33 AM
|
0
|
1
|
3109
|
|
POST
|
Hello Joe, 100.15 was released in August and iOS 16 was not available at the time of release. Therefore iOS 16 has not been certified with 100.15. Thanks, Preeti
... View more
09-20-2022
02:51 PM
|
0
|
3
|
1185
|
|
POST
|
Have you tried setting ArcGISRuntimeEnvironment.ServiceCurveGeometryMode ?
... View more
09-06-2022
09:56 AM
|
0
|
1
|
1497
|
|
POST
|
Hi there! I have attempted to answer your question on saving images for symbols in a stylx in this post. https://community.esri.com/t5/arcgis-runtime-sdk-for-net-questions/get-all-symbols-from-a-stylx-file-as-pngs/m-p/1197805 Just curious how is this related to the Unity workflow. Can you please elaborate your use case?
... View more
08-01-2022
11:56 AM
|
0
|
1
|
869
|
|
POST
|
Hi there! You can not get all symbols in a .stylx file in one call. .stylx is a collection of symbols grouped by categories and have keys. Symbol are searched based on categories or keys. You can follow the workflow listed below to get images for symbols in a stylx. ``` //Open stylx file SymbolStyle symbolstyle = await SymbolStyle.OpenAsync(@"PathToStylx"); // Get all categories and keys in the stylx. SymbolStyleSearchParameters searchParams = await symbolstyle .GetDefaultSearchParametersAsync(); // capture keys in a list var keys_list = searchParams.Keys.ToList(); foreach (var key_item in keys_list) { //for each key get the symbol var sym = await symbolstyle .GetSymbolAsync(keys: new string[] { key_item }); //generate swatch for the symbol var symbol_swatch = await sym.CreateSwatchAsync(); //create a bitmap that can then be saved locally. var bitmap_image = await symbol_swatch.ToImageSourceAsync(); .... // add code to save image locally } I also noticed you also posted same question on ArcGIS Maps SDK for Unity https://community.esri.com/t5/arcgis-maps-sdk-for-unity-questions/display-symbols-from-stylx-file/m-p/1197803#M64 The ArcGIS Maps SDKs for Unity is different from ArcGIS Runtime SDK, they are two completely distinct SDKs. I was wondering if it just a mix up. If not, can you please explain how this question is related your game engine workflow.
... View more
08-01-2022
11:52 AM
|
0
|
3
|
2028
|
|
POST
|
>I can create a marker layer using VectorMarkerSymbolLayer, but it doesn't have a marker placement property We acknowledge that there is no public API available to set the MarkerPlacement yet. This is on our to do list in one of the future releases. I will add your request to our internal issue to add some weight 🙂 So basically if you are creating symbol programmatically using API classes, you might not be able to do this because markerplacement property is not publicly available. One way around this to get symbol json and create symbol.FromJson() However, a better/recommended workflow is to create a stylx of symbols in ArcGIS Pro, and use SymbolStyle API to open that stylx in runtime and fetch/get desired symbol by searching the associated key. For the most part ArcGIS Pro symbolization and symbol properties are honored in Runtime via authored content, like if you are using a stylx or accessing a mobilemappackage etc. But not all properties are exposed as public APIs. Hope that helps.
... View more
07-26-2022
10:05 AM
|
1
|
0
|
873
|
|
POST
|
Thanks for trying ArcGIS Runtime SDK Maui preview. It is exciting to see our users transitioning to new technology . For this particular error, are you getting this error when deploying to an iOS simulator?
... View more
07-07-2022
10:03 AM
|
0
|
1
|
1568
|
|
POST
|
Current SketchEditor only rotates by interaction. There are no GeometryEngine method to rotate the geometry.
... View more
06-24-2022
11:28 AM
|
0
|
1
|
1028
|
|
POST
|
I am sure you have already checked it, but I have seen sometimes manifest is different in debug and release build. I suggest select release build and ensure Internet is checked on for release builds in package manifest.
... View more
06-24-2022
10:54 AM
|
0
|
0
|
2308
|
|
POST
|
Hi I am assuming you must have looked at this sample already. Are you saying when you are re-routed the heading on the map continues to be in wrong direction? --Preeti
... View more
05-26-2022
04:57 PM
|
0
|
4
|
1919
|
|
POST
|
Hi, I ported over forms SketchOnMap sample to MAUI and tried deleting the vertex and did not see any crash. Would you like to share your test app with a simple repro? I would be happy to try and see if I can reproduce it as well. Thanks, Preeti
... View more
05-18-2022
05:44 PM
|
0
|
4
|
2991
|
|
POST
|
Hi, If you are using a published feature layer, this can be achieved by setting VisualVariables on the layer before publishing the layer. VisualVariable info gets baked into layer's renderer info. For more info please refer to ArcGIS Pro documentation on how to achieve this https://pro.arcgis.com/en/pro-app/latest/help/mapping/layer-properties/vary-symbology-by-color.htm Once you apply the visual variable on the layer renderer, the color will get dynamically calculated based on the expression and runtime will honor the color based on expression at render time . Currently there is no API to update or set these dynamic visual variable via Runtime SDKs. Hopefully sometime in near future. If `Today` is not a dynamic value then you can achieve this via Runtime SDK by setting a UniqueValueRenderer, but looking at your use case it looks like that `TODAY` is perhaps a dynamic value that changes everyday. Hope this helps.
... View more
05-16-2022
11:36 AM
|
0
|
1
|
849
|
|
POST
|
Hello @StephM Currently RotationExpression only accepts a fieldname or a value. It is not equipped to accept an arcade expression. I don't know your use case but an alternate is to set rotation using an arcade expression on your data (in ArcGIS Pro) and publish that data with visual variable. Visual variable on renderers are honored in runtime and you will be able to see custom expression applied on the features. Here are some helpful resources: https://pro.arcgis.com/en/pro-app/2.7/help/mapping/layer-properties/vary-symbology-by-rotation.htm https://developers.arcgis.com/documentation/mapping-apis-and-services/visualization/data-driven-styles/visual-variables/#:~:text=Visual%20variables%20are%20a%20set,from%20a%20field%20or%20expression. Hope this helps.
... View more
05-04-2022
03:57 PM
|
0
|
0
|
1110
|
|
POST
|
Try passing the exact field name in square brackets like [SYMB_ROTATION]
... View more
05-02-2022
11:00 AM
|
0
|
0
|
1140
|
|
POST
|
Here you go Eric, https://developers.arcgis.com/net/api-reference/api/net/Esri.ArcGISRuntime/Esri.ArcGISRuntime.UI.SketchStyle.html
... View more
03-15-2022
02:12 PM
|
0
|
0
|
1119
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 09-04-2025 04:44 PM | |
| 1 | 04-14-2025 10:39 AM | |
| 1 | 12-17-2024 01:28 PM | |
| 1 | 01-16-2025 02:56 PM | |
| 1 | 12-26-2024 11:08 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|