<?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: How to make a Circle shape PictureSymbol in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/how-to-make-a-circle-shape-picturesymbol/m-p/604064#M7409</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PictureMarkerSymbol has the height and width and doesn't have any &lt;STRONG&gt;Style&lt;/STRONG&gt; propery like SimpleMarkerSymbol.&lt;BR /&gt;In that case I believe you may create a &lt;STRONG&gt;CompositeSymbol&lt;/STRONG&gt; using both SimpleMarkerSymbol with Style "Circle" and PIctureMarkerSymbol as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/////////&lt;/P&gt;&lt;P&gt;var symbol = new CompositeSymbol();&lt;BR /&gt; symbol.Symbols.Add(new SimpleMarkerSymbol() { Style = SimpleMarkerSymbolStyle.Circle, Color = Colors.Blue, Size = 100 });&lt;BR /&gt; &lt;BR /&gt; var symbolUri = new Uri(&lt;BR /&gt;&lt;SPAN&gt; "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fsampleserver6.arcgisonline.com%2Farcgis%2Frest%2Fservices%2FRecreation%2FFeatureServer%2F0%2Fimages%2Fe82f744ebb069bb35b234b3fea46deae" rel="nofollow" target="_blank"&gt;http://sampleserver6.arcgisonline.com/arcgis/rest/services/Recreation/FeatureServer/0/images/e82f744ebb069bb35b234b3fea46deae&lt;/A&gt;&lt;SPAN&gt;");&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;PictureMarkerSymbol campsiteSymbol = new PictureMarkerSymbol(symbolUri);&lt;/P&gt;&lt;P&gt;campsiteSymbol.Height = 40;&lt;BR /&gt; campsiteSymbol.Width = 40;&lt;/P&gt;&lt;P&gt;symbol.Symbols.Add(campsiteSymbol);&lt;/P&gt;&lt;P&gt;// Create location for the campsite&lt;BR /&gt; MapPoint campsitePoint = new MapPoint(-223560, 6552021, SpatialReferences.WebMercator);&lt;/P&gt;&lt;P&gt;// Create graphic with the location and symbol&lt;BR /&gt; // Graphic campsiteGraphic = new Graphic(campsitePoint, campsiteSymbol);&lt;/P&gt;&lt;P&gt;Graphic campsiteGraphic = new Graphic(campsitePoint, symbol);&lt;/P&gt;&lt;P&gt;////////&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used "RendererPictureMarkers" sample to test. Hope that helps.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nagma&lt;IMG alt="CompositeSymbol" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/365988_Circle_PictureMarkerSymbol.PNG" style="width: 620px; height: 272px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Aug 2017 16:44:21 GMT</pubDate>
    <dc:creator>NagmaYasmin</dc:creator>
    <dc:date>2017-08-07T16:44:21Z</dc:date>
    <item>
      <title>How to make a Circle shape PictureSymbol</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/how-to-make-a-circle-shape-picturesymbol/m-p/604063#M7408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when I build a Graphic with PictureMarkSymbol, the shape of Graphic is Rectangle, I want to make a Circle shape Graphic with PictureSymbol, Anyone who know how to do it ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Aug 2017 06:52:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/how-to-make-a-circle-shape-picturesymbol/m-p/604063#M7408</guid>
      <dc:creator>xiaoguangyan</dc:creator>
      <dc:date>2017-08-07T06:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a Circle shape PictureSymbol</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/how-to-make-a-circle-shape-picturesymbol/m-p/604064#M7409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PictureMarkerSymbol has the height and width and doesn't have any &lt;STRONG&gt;Style&lt;/STRONG&gt; propery like SimpleMarkerSymbol.&lt;BR /&gt;In that case I believe you may create a &lt;STRONG&gt;CompositeSymbol&lt;/STRONG&gt; using both SimpleMarkerSymbol with Style "Circle" and PIctureMarkerSymbol as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/////////&lt;/P&gt;&lt;P&gt;var symbol = new CompositeSymbol();&lt;BR /&gt; symbol.Symbols.Add(new SimpleMarkerSymbol() { Style = SimpleMarkerSymbolStyle.Circle, Color = Colors.Blue, Size = 100 });&lt;BR /&gt; &lt;BR /&gt; var symbolUri = new Uri(&lt;BR /&gt;&lt;SPAN&gt; "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fsampleserver6.arcgisonline.com%2Farcgis%2Frest%2Fservices%2FRecreation%2FFeatureServer%2F0%2Fimages%2Fe82f744ebb069bb35b234b3fea46deae" rel="nofollow" target="_blank"&gt;http://sampleserver6.arcgisonline.com/arcgis/rest/services/Recreation/FeatureServer/0/images/e82f744ebb069bb35b234b3fea46deae&lt;/A&gt;&lt;SPAN&gt;");&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;PictureMarkerSymbol campsiteSymbol = new PictureMarkerSymbol(symbolUri);&lt;/P&gt;&lt;P&gt;campsiteSymbol.Height = 40;&lt;BR /&gt; campsiteSymbol.Width = 40;&lt;/P&gt;&lt;P&gt;symbol.Symbols.Add(campsiteSymbol);&lt;/P&gt;&lt;P&gt;// Create location for the campsite&lt;BR /&gt; MapPoint campsitePoint = new MapPoint(-223560, 6552021, SpatialReferences.WebMercator);&lt;/P&gt;&lt;P&gt;// Create graphic with the location and symbol&lt;BR /&gt; // Graphic campsiteGraphic = new Graphic(campsitePoint, campsiteSymbol);&lt;/P&gt;&lt;P&gt;Graphic campsiteGraphic = new Graphic(campsitePoint, symbol);&lt;/P&gt;&lt;P&gt;////////&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used "RendererPictureMarkers" sample to test. Hope that helps.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nagma&lt;IMG alt="CompositeSymbol" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/365988_Circle_PictureMarkerSymbol.PNG" style="width: 620px; height: 272px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Aug 2017 16:44:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/how-to-make-a-circle-shape-picturesymbol/m-p/604064#M7409</guid>
      <dc:creator>NagmaYasmin</dc:creator>
      <dc:date>2017-08-07T16:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a Circle shape PictureSymbol</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/how-to-make-a-circle-shape-picturesymbol/m-p/604065#M7410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will need to create a PNG image with transparent pixels, so only the center parts are non-transparent. That way you can create any shape you'd like.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Aug 2017 17:22:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/how-to-make-a-circle-shape-picturesymbol/m-p/604065#M7410</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2017-08-07T17:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a Circle shape PictureSymbol</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/how-to-make-a-circle-shape-picturesymbol/m-p/604066#M7411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Nagma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2017 03:32:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/how-to-make-a-circle-shape-picturesymbol/m-p/604066#M7411</guid>
      <dc:creator>xiaoguangyan</dc:creator>
      <dc:date>2017-08-08T03:32:37Z</dc:date>
    </item>
  </channel>
</rss>

