() { "My Polygon Symbol" });
```
For more information see:
http://pro.arcgis.com/en/pro-app/help/projects/styles.htm
http://pro.arcgis.com/en/pro-app/help/projects/manage-styles.htm
http://pro.arcgis.com/en/pro-app/help/mapping/layer-properties/polygon-symbols.htm"/>
アプリで不具合の更新を取得する
URL がコピーされましたURL の共有
不具合
Changing the graphics rendering mode from dynamic to static and vice versa changes the rendering direction of composite symbol placement effect.
最後に公開された状態: November 15, 2017ArcGIS Runtime SDK
不具合 ID 番号
BUG-000108786
送信されました
October 13, 2017
最終更新日
June 5, 2024
適用対象
ArcGIS Runtime SDK
見つかったバージョン
100.1.0
オペレーティング システム
Windows OS
オペレーティング システムのバージョン
10.0 64 Bit
ステータス
Known Limit
開発チームによる確認後に、この問題が、Esri の管理の範囲外にあるソフトウェアの既知の制限に関するものであると判断されました。 問題の「参考情報」セクションに、さらに詳細な説明が示されていることがあります。
参考情報
The JSON symbol definition used in this case is no longer supported in ArcGIS Runtime as of version 100.2. To ensure supported JSON is used, the recommended approach is to use ArcGIS Pro to create mobile style files (.stylx) and reference those via the ArcGIS Runtime API using the `SymbolStyle` class static `OpenAsync()` method. That returns a SymbolStyle instance that can return symbols using the GetSymbolAsync method in conjunction with the symbol name. The symbol can be used on a per-Graphic basis, or within a Renderer. The existing JSON symbol definition(s) can be used as a guide to create new symbols within the new mobile style.
For example:
```
SymbolStyle symbolStyle = await SymbolStyle.OpenAsync(@"C:\MyMobileStyle.stylx");
Symbol symbol = await symbolStyle.GetSymbolAsync(new List() { "My Polygon Symbol" });
```
For more information see:
http://pro.arcgis.com/en/pro-app/help/projects/styles.htm
http://pro.arcgis.com/en/pro-app/help/projects/manage-styles.htm
http://pro.arcgis.com/en/pro-app/help/mapping/layer-properties/polygon-symbols.htm