<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Draw circles and sectors on the map in Qt Maps SDK Questions</title>
    <link>https://community.esri.com/t5/qt-maps-sdk-questions/draw-circles-and-sectors-on-the-map/m-p/41754#M180</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) I think you could do this by creating a custom symbol in Pro and saving it to a Mobile Style File. I just wrote up a blog about this process here -&amp;nbsp;&lt;A _jive_internal="true" href="https://community.esri.com/community/developers/native-app-developers/arcgis-runtime-sdk-for-qt/blog/2017/11/01/using-custom-pro-symbols-in-arcgis-runtime"&gt;Using Custom Pro Symbols in ArcGIS Runtime&lt;/A&gt;. Please read through that and see if you can create a polygon fill symbol&lt;/P&gt;&lt;P&gt;2) Will the geodesic sector work?&amp;nbsp;&lt;A class="link-titled" href="http://developers.arcgis.com/qt/latest/cpp/api-reference/esri-arcgisruntime-geometryengine.html#sectorGeodesic" title="http://developers.arcgis.com/qt/latest/cpp/api-reference/esri-arcgisruntime-geometryengine.html#sectorGeodesic"&gt;GeometryEngine Class | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3) Did you see the documentation we have here?&amp;nbsp;&lt;A class="link-titled" href="http://developers.arcgis.com/qt/latest/cpp/api-reference/esri-arcgisruntime-geodeticcurvetype.html" title="http://developers.arcgis.com/qt/latest/cpp/api-reference/esri-arcgisruntime-geodeticcurvetype.html"&gt;GeodeticCurveType Class | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Nov 2017 19:30:44 GMT</pubDate>
    <dc:creator>LucasDanzinger</dc:creator>
    <dc:date>2017-11-01T19:30:44Z</dc:date>
    <item>
      <title>Draw circles and sectors on the map</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/draw-circles-and-sectors-on-the-map/m-p/41753#M179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm currently displaying a circle on the map which represents a 360 degrees system range, and is created using the following code. I have a few questions about it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;---------------&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SimpleLineSymbol* circleOutline = new SimpleLineSymbol(SimpleLineSymbolStyle::Solid, QColor(Qt::lightGray), 2, this);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; SimpleFillSymbol* circleSym = new SimpleFillSymbol(SimpleFillSymbolStyle::Solid, Qt::transparent, circleOutline, this);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;m_graphicsOverlays[GRAPHIC_OVERLAY_RANGE]-&amp;gt;setRenderer(new SimpleRenderer(circleSym));&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Polygon poly1 = GeometryEngine::bufferGeodetic(systemPosition, range1Meters, LinearUnit::meters(), 0.5, GeodeticCurveType::Geodesic);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Graphic* graphic1 = new Graphic(poly1);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;m_graphicsOverlays[GRAPHIC_OVERLAY_RANGE]-&amp;gt;graphics()-&amp;gt;append(graphic1);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;----------------&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;1. I would like the circle to have a slightly complicated outline. 4 pixels wide, two white inner pixels and two outer black pixels. Is that possible?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;2. I also need to display (in some situations) just a specific section of a circle (like a piza slice...) Can I do that?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;3. I would appreciate a detailed explanation regarding the differences between the different curve types.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Thanks a lot!&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Oct 2017 10:45:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/draw-circles-and-sectors-on-the-map/m-p/41753#M179</guid>
      <dc:creator>AnatBen_Israel</dc:creator>
      <dc:date>2017-10-19T10:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Draw circles and sectors on the map</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/draw-circles-and-sectors-on-the-map/m-p/41754#M180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) I think you could do this by creating a custom symbol in Pro and saving it to a Mobile Style File. I just wrote up a blog about this process here -&amp;nbsp;&lt;A _jive_internal="true" href="https://community.esri.com/community/developers/native-app-developers/arcgis-runtime-sdk-for-qt/blog/2017/11/01/using-custom-pro-symbols-in-arcgis-runtime"&gt;Using Custom Pro Symbols in ArcGIS Runtime&lt;/A&gt;. Please read through that and see if you can create a polygon fill symbol&lt;/P&gt;&lt;P&gt;2) Will the geodesic sector work?&amp;nbsp;&lt;A class="link-titled" href="http://developers.arcgis.com/qt/latest/cpp/api-reference/esri-arcgisruntime-geometryengine.html#sectorGeodesic" title="http://developers.arcgis.com/qt/latest/cpp/api-reference/esri-arcgisruntime-geometryengine.html#sectorGeodesic"&gt;GeometryEngine Class | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3) Did you see the documentation we have here?&amp;nbsp;&lt;A class="link-titled" href="http://developers.arcgis.com/qt/latest/cpp/api-reference/esri-arcgisruntime-geodeticcurvetype.html" title="http://developers.arcgis.com/qt/latest/cpp/api-reference/esri-arcgisruntime-geodeticcurvetype.html"&gt;GeodeticCurveType Class | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Nov 2017 19:30:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/draw-circles-and-sectors-on-the-map/m-p/41754#M180</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2017-11-01T19:30:44Z</dc:date>
    </item>
  </channel>
</rss>

