<?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 Displaying sets of points on GraphicsLayer in ArcGIS Runtime SDK for Android Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/displaying-sets-of-points-on-graphicslayer/m-p/343437#M2230</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I want a user to select a series of points to define a route. I collect screen taps into a &lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;"&gt;Polyline&lt;/SPAN&gt;&lt;SPAN&gt; and add/update the graphic without difficulty using a &lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;"&gt;SimpleLineSymbol&lt;/SPAN&gt;&lt;SPAN&gt;. However, I would like to be able to show just the points (vertices) as well, and the &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/android-sdk/api/index.html?com/esri/core/symbol/SimpleMarkerSymbol.html" rel="nofollow noopener noreferrer" target="_blank"&gt;documentation&lt;/A&gt;&lt;SPAN&gt; for &lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;"&gt;SimpleMarkerSymbol&lt;/SPAN&gt;&lt;SPAN&gt; suggests this is possible. However, writing (where &lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;"&gt;mRoutesLayer&lt;/SPAN&gt;&lt;SPAN&gt; is a &lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;"&gt;GraphicsLayer&lt;/SPAN&gt;&lt;SPAN&gt; and &lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;"&gt;mRoute&lt;/SPAN&gt;&lt;SPAN&gt; is a &lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;"&gt;Polyline&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
mRoutesLayer.addGraphic(new Graphic(mRoute, new SimpleLineSymbol(Color.RED, 5)));
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;gives me the red 5dp line I expect, while&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
mRoutesLayer.addGraphic(new Graphic(mRoute, new SimpleMarkerSymbol(Color.RED, 5, SimpleMarkerSymbol.STYLE.CIRCLE)));
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;gives me nothing at all.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried collecting the same points into a MultiPoint instead, but neither type of symbol results in a visible overlay in that case.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What Geometry/Symbol combination is appropriate for displaying a series of points?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 16:11:21 GMT</pubDate>
    <dc:creator>JerryTowler</dc:creator>
    <dc:date>2021-12-11T16:11:21Z</dc:date>
    <item>
      <title>Displaying sets of points on GraphicsLayer</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/displaying-sets-of-points-on-graphicslayer/m-p/343437#M2230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I want a user to select a series of points to define a route. I collect screen taps into a &lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;"&gt;Polyline&lt;/SPAN&gt;&lt;SPAN&gt; and add/update the graphic without difficulty using a &lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;"&gt;SimpleLineSymbol&lt;/SPAN&gt;&lt;SPAN&gt;. However, I would like to be able to show just the points (vertices) as well, and the &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/android-sdk/api/index.html?com/esri/core/symbol/SimpleMarkerSymbol.html" rel="nofollow noopener noreferrer" target="_blank"&gt;documentation&lt;/A&gt;&lt;SPAN&gt; for &lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;"&gt;SimpleMarkerSymbol&lt;/SPAN&gt;&lt;SPAN&gt; suggests this is possible. However, writing (where &lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;"&gt;mRoutesLayer&lt;/SPAN&gt;&lt;SPAN&gt; is a &lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;"&gt;GraphicsLayer&lt;/SPAN&gt;&lt;SPAN&gt; and &lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;"&gt;mRoute&lt;/SPAN&gt;&lt;SPAN&gt; is a &lt;/SPAN&gt;&lt;SPAN style="font-family:Courier New;"&gt;Polyline&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
mRoutesLayer.addGraphic(new Graphic(mRoute, new SimpleLineSymbol(Color.RED, 5)));
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;gives me the red 5dp line I expect, while&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
mRoutesLayer.addGraphic(new Graphic(mRoute, new SimpleMarkerSymbol(Color.RED, 5, SimpleMarkerSymbol.STYLE.CIRCLE)));
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;gives me nothing at all.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried collecting the same points into a MultiPoint instead, but neither type of symbol results in a visible overlay in that case.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What Geometry/Symbol combination is appropriate for displaying a series of points?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:11:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/displaying-sets-of-points-on-graphicslayer/m-p/343437#M2230</guid>
      <dc:creator>JerryTowler</dc:creator>
      <dc:date>2021-12-11T16:11:21Z</dc:date>
    </item>
  </channel>
</rss>

