<?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: No FEBA Line Displayed in Java Maps SDK Questions</title>
    <link>https://community.esri.com/t5/java-maps-sdk-questions/no-feba-line-displayed/m-p/41614#M143</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I'm guessing this is wrong, but is this because of my control points?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for checking this out, Mark. Your guess is right, but it's not because of your control points. I've found that the message processor is very forgiving in that it uses only what it needs to plot the symbol and ignores any other number of control points parsed from the property to get it done; it has issues (no symbol display) when it doesn't parse enough of them.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You were able to successfully replicate the issue as written, but this symbol only requires two points because it's a line representing an edge between two areas.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 29 Mar 2014 14:22:34 GMT</pubDate>
    <dc:creator>CarlosColón-Maldonado</dc:creator>
    <dc:date>2014-03-29T14:22:34Z</dc:date>
    <item>
      <title>No FEBA Line Displayed</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/no-feba-line-displayed/m-p/41612#M141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Greetings,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I was able to confirm this issue was found also on 10.1.1 as well as version 10.2 of the 2525C Message Processor Component. When a Forward Edge of Battle Area (FEBA) Icon is processed, e.g., SIC: "GFGCDLF--------", the enclosed symbol is created. Notice that the line between its default labels do not show. Is there a workaround to this or is this somehow related to all other tactical graphics issues? Some of these issues have been going on for awhile.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advanced.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2014 20:08:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/no-feba-line-displayed/m-p/41612#M141</guid>
      <dc:creator>CarlosColón-Maldonado</dc:creator>
      <dc:date>2014-03-27T20:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: No FEBA Line Displayed</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/no-feba-line-displayed/m-p/41613#M142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Carlos,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As you know this symbology is not my subject, but I've tried to render this using the following code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Message message = new Message();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;uuid1 = UUID.randomUUID();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;message.setID(uuid1.toString());&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;message.setProperty("_Type", "position_report");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;message.setProperty("_Action", "update");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;message.setProperty("_WKID", "3857");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;message.setProperty("sic", "GFGCDLF--------");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;message.setProperty("_Control_Points", "-235647.46821,6677200.72612;-233742.27267,6678479.21259;-232112.82912,6679055.78493;-229881.74487,6680259.06632;-227324.77192,6681111.39064;-223790.13283,6682565.35566");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;mgl.getMessageProcessor().processMessage(message);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is what happens with the latest version in development:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]32598[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm guessing this is wrong, but is this because of my control points?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you post be a decent message I'll try it out with the latest symbol dictionary.&amp;nbsp; If it is still wrong I'll talk to someone in the Military Team.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mark&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Mar 2014 14:38:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/no-feba-line-displayed/m-p/41613#M142</guid>
      <dc:creator>MarkBaird</dc:creator>
      <dc:date>2014-03-28T14:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: No FEBA Line Displayed</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/no-feba-line-displayed/m-p/41614#M143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I'm guessing this is wrong, but is this because of my control points?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for checking this out, Mark. Your guess is right, but it's not because of your control points. I've found that the message processor is very forgiving in that it uses only what it needs to plot the symbol and ignores any other number of control points parsed from the property to get it done; it has issues (no symbol display) when it doesn't parse enough of them.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You were able to successfully replicate the issue as written, but this symbol only requires two points because it's a line representing an edge between two areas.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Mar 2014 14:22:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/no-feba-line-displayed/m-p/41614#M143</guid>
      <dc:creator>CarlosColón-Maldonado</dc:creator>
      <dc:date>2014-03-29T14:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: No FEBA Line Displayed</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/no-feba-line-displayed/m-p/41615#M144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Okay, I'll flag this up with someone from the symbol dictionary team.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mark&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Mar 2014 14:11:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/no-feba-line-displayed/m-p/41615#M144</guid>
      <dc:creator>MarkBaird</dc:creator>
      <dc:date>2014-03-30T14:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: No FEBA Line Displayed</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/no-feba-line-displayed/m-p/41616#M145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;There is indeed an issue with the "Circled-X" symbol being somewhat faint/dim (that is being addressed in 10.2.3), but just to confirm that this (screen shot from the 2525C standard) is how you expect this symbol to look?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]32648[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 16:34:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/no-feba-line-displayed/m-p/41616#M145</guid>
      <dc:creator>ChristopherMoore</dc:creator>
      <dc:date>2014-03-31T16:34:16Z</dc:date>
    </item>
  </channel>
</rss>

