ArcGISTiledLayer fails to display a basemap within a 3D scene.
上次发布: February 28, 2018ArcGIS Runtime SDK
漏洞 ID 编号
BUG-000111366
已提交
February 2, 2018
上次修改时间
June 5, 2024
适用范围
ArcGIS Runtime SDK
找到的版本
100.2.0
操作系统
Windows OS
操作系统版本
7.0 64 Bit
状态
Will Not Be Addressed
开发团队已考虑过该问题或请求,并决定不会解决该问题。 问题的“其他信息”部分可能包含进一步说明。
附加信息
The project might have some obsolete code that needs to be removed, which will make it to work. Here's the code:
if (QT_VERSION_MAJOR == 5 && QT_VERSION_MINOR > 6)
{
// Workaround for Qt versions greater than 5.6
// Force to OpenGL ES 3
QSurfaceFormat fmt = QSurfaceFormat::defaultFormat();
fmt.setVersion(3, 0);
QSurfaceFormat::setDefaultFormat(fmt);
}
Also, any other project that has this code for windows should be removed.