<?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: Drawing a circle with border without it being filled in Java Maps SDK Questions</title>
    <link>https://community.esri.com/t5/java-maps-sdk-questions/drawing-a-circle-with-border-without-it-being/m-p/256673#M750</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thanks for all of these options. Although I can't do exactly what I want to do, I at least have a few work arounds.&lt;BR /&gt;&lt;BR /&gt;I would like to reccomend that the API have a setAlpha(int alpha) method added for a SympleMarkerSymbol. SimpleLineSymbol has it, why not SimpleMarkerSymbol?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Suggestion noted!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can however set transparency on an individual SimpleMarkerSymbol via its Color, e.g. by using a color like (0, 0, 0, 150) where 150 is the alpha. You can also set an opacity on the GraphicsLayer containing these symbols, so for example if you wanted a group of symbols to have a certain transparency you could stick them all in the same layer and set the opacity on the layer via setOpacity(float).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Oct 2013 11:06:18 GMT</pubDate>
    <dc:creator>EliseAcheson1</dc:creator>
    <dc:date>2013-10-29T11:06:18Z</dc:date>
    <item>
      <title>Drawing a circle with border without it being filled</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/drawing-a-circle-with-border-without-it-being/m-p/256669#M746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am trying to draw a black circle with a radius and border 'stroke' width. I do not want the circle to be filled in with any color. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I see that you can draw a filled circle with SimpleMarkerSymbol using the Style.CIRCLE. But that fills the circle, there are no options for border color and width or opacity of the fill color.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Perhaps I've missed something in the API.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Oct 2013 16:44:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/drawing-a-circle-with-border-without-it-being/m-p/256669#M746</guid>
      <dc:creator>TaylorAbrahamson</dc:creator>
      <dc:date>2013-10-23T16:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing a circle with border without it being filled</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/drawing-a-circle-with-border-without-it-being/m-p/256670#M747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You could use a SimplePictureSymbol with the picture of a donut (circle with full alpha center).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Oct 2013 20:04:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/drawing-a-circle-with-border-without-it-being/m-p/256670#M747</guid>
      <dc:creator>StephenBaier</dc:creator>
      <dc:date>2013-10-23T20:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing a circle with border without it being filled</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/drawing-a-circle-with-border-without-it-being/m-p/256671#M748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can use a SimpleFillSymbol with a SimpleLineSymbol border and a transparent fill color - however you need to use this type of symbol with a polygon Geometry, not a point. So, you could either create your circles as polygons or use GeometryEngine.buffer to buffer a point and thus create a polygon geometry, then symbolize that with a fill symbol. If you don't want the scale dependent behavior that a polygon will give you, then the PictureMarkerSymbol suggestion is probably your best bet.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 14:04:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/drawing-a-circle-with-border-without-it-being/m-p/256671#M748</guid>
      <dc:creator>EliseAcheson1</dc:creator>
      <dc:date>2013-10-24T14:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing a circle with border without it being filled</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/drawing-a-circle-with-border-without-it-being/m-p/256672#M749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for all of these options. Although I can't do exactly what I want to do, I at least have a few work arounds.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would like to reccomend that the API have a setAlpha(int alpha) method added for a SympleMarkerSymbol. SimpleLineSymbol has it, why not SimpleMarkerSymbol?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Oct 2013 16:17:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/drawing-a-circle-with-border-without-it-being/m-p/256672#M749</guid>
      <dc:creator>TaylorAbrahamson</dc:creator>
      <dc:date>2013-10-28T16:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing a circle with border without it being filled</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/drawing-a-circle-with-border-without-it-being/m-p/256673#M750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thanks for all of these options. Although I can't do exactly what I want to do, I at least have a few work arounds.&lt;BR /&gt;&lt;BR /&gt;I would like to reccomend that the API have a setAlpha(int alpha) method added for a SympleMarkerSymbol. SimpleLineSymbol has it, why not SimpleMarkerSymbol?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Suggestion noted!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can however set transparency on an individual SimpleMarkerSymbol via its Color, e.g. by using a color like (0, 0, 0, 150) where 150 is the alpha. You can also set an opacity on the GraphicsLayer containing these symbols, so for example if you wanted a group of symbols to have a certain transparency you could stick them all in the same layer and set the opacity on the layer via setOpacity(float).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 11:06:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/drawing-a-circle-with-border-without-it-being/m-p/256673#M750</guid>
      <dc:creator>EliseAcheson1</dc:creator>
      <dc:date>2013-10-29T11:06:18Z</dc:date>
    </item>
  </channel>
</rss>

