Hi,
I'm using the SDK for Qt - C++ 100.7.
I have to display a simple circle on the map that work perfect on Windows10, but doesn't display on Windows7.
Everything else (so far...) works fine on both operating systems (Polygons, pictures, text labels etc.).
These are the lines for creating the circle:
m_pRoiGraphic = new Graphic(this);
m_roiCircle = new SimpleLineSymbol(SimpleLineSymbolStyle::Solid, QColor(Qt::yellow), 2, this);
m_roiCircleSym = new SimpleFillSymbol(SimpleFillSymbolStyle::Solid, Qt::transparent, m_roiCircle, this);
m_pGraphicsOverlays->at(OVERLAY_ROI)->setRenderer(new SimpleRenderer(m_roiCircleSym));
m_pGraphicsOverlays->at(OVERLAY_ROI)->graphics()->append(m_pRoiGraphic);
m_poly = GeometryEngine::bufferGeodetic(point, radius, LinearUnit::meters(), 0.5, GeodeticCurveType::Geodesic);
m_pRoiGraphic->setGeometry(m_poly);
Any idea??
Thanks