<?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: text on sketch or graphics layer in ArcGIS Runtime SDK for iOS Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/text-on-sketch-or-graphics-layer/m-p/323073#M2821</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You should use AGSCompositeSymbol for the graphic which will have AGSTextSymbol with Marker/Line/Fill symbol.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Nov 2012 23:04:43 GMT</pubDate>
    <dc:creator>NimeshJarecha</dc:creator>
    <dc:date>2012-11-02T23:04:43Z</dc:date>
    <item>
      <title>text on sketch or graphics layer</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/text-on-sketch-or-graphics-layer/m-p/323072#M2820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is it possible to put word text on a sketch or graphics layer? Or would i have to take the text and make some sort of custom graphic out of it and then place that on the graphics layer?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2012 20:55:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/text-on-sketch-or-graphics-layer/m-p/323072#M2820</guid>
      <dc:creator>HamzaHaroon</dc:creator>
      <dc:date>2012-10-31T20:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: text on sketch or graphics layer</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/text-on-sketch-or-graphics-layer/m-p/323073#M2821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You should use AGSCompositeSymbol for the graphic which will have AGSTextSymbol with Marker/Line/Fill symbol.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2012 23:04:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/text-on-sketch-or-graphics-layer/m-p/323073#M2821</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2012-11-02T23:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: text on sketch or graphics layer</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/text-on-sketch-or-graphics-layer/m-p/323074#M2822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;can you provide an example of how AGSTextSymbol can be used? I tried searching online, but couldn't find any.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2012 12:02:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/text-on-sketch-or-graphics-layer/m-p/323074#M2822</guid>
      <dc:creator>HamzaHaroon</dc:creator>
      <dc:date>2012-11-05T12:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: text on sketch or graphics layer</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/text-on-sketch-or-graphics-layer/m-p/323075#M2823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here is sample code, how to create a composite symbol with text/fill symbols and create a graphic with it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;AGSTextSymbol *textSymbol = [[AGSTextSymbol alloc]init]; textSymbol.textTemplate = @"Text Symbol"; textSymbol.color = [UIColor orangeColor];&amp;nbsp;&amp;nbsp; AGSSimpleFillSymbol *simpleFillSymbol = [AGSSimpleFillSymbol simpleFillSymbol]; simpleFillSymbol.outline.color = [UIColor greenColor]; simpleFillSymbol.style = AGSSimpleFillSymbolStyleSolid;&amp;nbsp;&amp;nbsp; //create a composite symbol AGSCompositeSymbol *compositeSymbol = [AGSCompositeSymbol compositeSymbol]; [compositeSymbol.symbols addObject:simpleFillSymbol]; [compositeSymbol.symbols addObject:textSymbol];&amp;nbsp; AGSGraphic *graphic = [AGSGraphic graphicWithGeometry:&amp;lt;your polygon geometry&amp;gt; symbol:compositeSymbol attributes:nil infoTemplateDelegate:nil];&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2012 16:37:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/text-on-sketch-or-graphics-layer/m-p/323075#M2823</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2012-11-06T16:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: text on sketch or graphics layer</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/text-on-sketch-or-graphics-layer/m-p/323076#M2824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;thanks alot. this definitely seems like what i need. One thing i cant figure out is if I can make the text wrap around underneath if its too long.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2012 17:44:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/text-on-sketch-or-graphics-layer/m-p/323076#M2824</guid>
      <dc:creator>HamzaHaroon</dc:creator>
      <dc:date>2012-11-06T17:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: text on sketch or graphics layer</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/text-on-sketch-or-graphics-layer/m-p/323077#M2825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;No, unfortunately, you can't wrap around text.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2012 17:57:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/text-on-sketch-or-graphics-layer/m-p/323077#M2825</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2012-11-06T17:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: text on sketch or graphics layer</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/text-on-sketch-or-graphics-layer/m-p/323078#M2826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;oh ok. your code sample works great.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;just some minor fixes to it:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;textSymbol.text should be textSymbol.textTemplate&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and [compositeSymbol.symbols addObject...]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2012 18:16:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/text-on-sketch-or-graphics-layer/m-p/323078#M2826</guid>
      <dc:creator>HamzaHaroon</dc:creator>
      <dc:date>2012-11-06T18:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: text on sketch or graphics layer</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/text-on-sketch-or-graphics-layer/m-p/323079#M2827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for pointing that out. I fixed it in my post.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2012 18:28:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/text-on-sketch-or-graphics-layer/m-p/323079#M2827</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2012-11-06T18:28:14Z</dc:date>
    </item>
  </channel>
</rss>

