<?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: SimpleMarkerSymbol not displaying all map features in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/simplemarkersymbol-not-displaying-all-map-features/m-p/624236#M16061</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you want the same symbol applied to the GraphicsLayer, you can set GraphicsLayer.Renderer with this symbol just as in the following SDK sample: &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#FeatureLayerSimple" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#FeatureLayerSimple&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Grid x:Name="LayoutRoot" Background="White" &amp;gt;
&amp;nbsp; &amp;lt;Grid.Resources&amp;gt;
&amp;nbsp;&amp;nbsp; &lt;SPAN style="color:&amp;quot;#FF0000&amp;quot;;"&gt;&amp;lt;esri:SimpleRenderer x:Key="MySimplePointRenderer"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:SimpleRenderer.Symbol&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:SimpleMarkerSymbol Color="#99FF0000"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:SimpleRenderer.Symbol&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;/esri:SimpleRenderer&amp;gt; &lt;/SPAN&gt;&amp;nbsp; 
&amp;nbsp; &amp;lt;/Grid.Resources&amp;gt;

&amp;nbsp; &amp;lt;esri:Map x:Name="MyMap" WrapAround="True" Extent="-15000000,2000000,-7000000,8000000"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ArcGISTiledMapServiceLayer ID="StreetMapLayer"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Url="http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:FeatureLayer ID="MyFeatureLayer"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Url="http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StatesCitiesRivers_USA/MapServer/0" 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Where="POP1990 &amp;gt; 100000" &lt;SPAN style="color:&amp;quot;#FF0000&amp;quot;;"&gt;Renderer="{StaticResource MySimplePointRenderer}"&lt;/SPAN&gt;/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:Map&amp;gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 02:35:24 GMT</pubDate>
    <dc:creator>JenniferNery</dc:creator>
    <dc:date>2021-12-12T02:35:24Z</dc:date>
    <item>
      <title>SimpleMarkerSymbol not displaying all map features</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/simplemarkersymbol-not-displaying-all-map-features/m-p/624234#M16059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've got a test ArcGIS Silverlight app and I've successfully got maptips displaying all my attribute data for a point layer, but not all points are showing up.&amp;nbsp; I grabbed the maptips sample from the Silverlight API interactive SDK website.&amp;nbsp; For example, my ArcGIS Server map service has a layer that contains 4000+ points.&amp;nbsp; All of these display fine in the application, but when I use the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Grid.Resources&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:SimpleMarkerSymbol x:Key="DefaultMarkerSymbol" Color="Red" /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Grid.Resources&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;to generate the symbols which the maptips use, only about half of the points generate.&amp;nbsp; According to the code above, I should be getting a red dot at all point features but I don't.&amp;nbsp; Any ideas on what I should chase down?&amp;nbsp; Is this a layer properties problem with the map service or a silverlight code problem?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2012 15:42:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/simplemarkersymbol-not-displaying-all-map-features/m-p/624234#M16059</guid>
      <dc:creator>MattSimmons</dc:creator>
      <dc:date>2012-02-07T15:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: SimpleMarkerSymbol not displaying all map features</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/simplemarkersymbol-not-displaying-all-map-features/m-p/624235#M16060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Not sure if this is a coincidence or not, but it looks like its only applying a graphic to ObjectID's with 3 digits or less, which makes no sense to me...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2012 16:08:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/simplemarkersymbol-not-displaying-all-map-features/m-p/624235#M16060</guid>
      <dc:creator>MattSimmons</dc:creator>
      <dc:date>2012-02-07T16:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: SimpleMarkerSymbol not displaying all map features</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/simplemarkersymbol-not-displaying-all-map-features/m-p/624236#M16061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you want the same symbol applied to the GraphicsLayer, you can set GraphicsLayer.Renderer with this symbol just as in the following SDK sample: &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#FeatureLayerSimple" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#FeatureLayerSimple&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Grid x:Name="LayoutRoot" Background="White" &amp;gt;
&amp;nbsp; &amp;lt;Grid.Resources&amp;gt;
&amp;nbsp;&amp;nbsp; &lt;SPAN style="color:&amp;quot;#FF0000&amp;quot;;"&gt;&amp;lt;esri:SimpleRenderer x:Key="MySimplePointRenderer"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:SimpleRenderer.Symbol&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:SimpleMarkerSymbol Color="#99FF0000"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:SimpleRenderer.Symbol&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;/esri:SimpleRenderer&amp;gt; &lt;/SPAN&gt;&amp;nbsp; 
&amp;nbsp; &amp;lt;/Grid.Resources&amp;gt;

&amp;nbsp; &amp;lt;esri:Map x:Name="MyMap" WrapAround="True" Extent="-15000000,2000000,-7000000,8000000"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ArcGISTiledMapServiceLayer ID="StreetMapLayer"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Url="http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:FeatureLayer ID="MyFeatureLayer"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Url="http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StatesCitiesRivers_USA/MapServer/0" 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Where="POP1990 &amp;gt; 100000" &lt;SPAN style="color:&amp;quot;#FF0000&amp;quot;;"&gt;Renderer="{StaticResource MySimplePointRenderer}"&lt;/SPAN&gt;/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:Map&amp;gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:35:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/simplemarkersymbol-not-displaying-all-map-features/m-p/624236#M16061</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-12T02:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: SimpleMarkerSymbol not displaying all map features</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/simplemarkersymbol-not-displaying-all-map-features/m-p/624237#M16062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the reply!&amp;nbsp; But not sure how that helps here - I've got a data layer from an .msd with 4000+ points, but when I set it up for maptips, only half, or so, show up in the application's graphics layer.&amp;nbsp; What would prevent them all from displaying?&amp;nbsp; I have no where clauses in any layers.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2012 17:18:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/simplemarkersymbol-not-displaying-all-map-features/m-p/624237#M16062</guid>
      <dc:creator>MattSimmons</dc:creator>
      <dc:date>2012-02-07T17:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: SimpleMarkerSymbol not displaying all map features</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/simplemarkersymbol-not-displaying-all-map-features/m-p/624238#M16063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;There is a maximum number of features that can be returned by the service.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You probably reached this limit (often 1000 but can be changed).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The workaround may be to use the Mode 'OnDemand' (defined on the FeatureLayer) so only the features inside the current extent will be loaded.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2012 17:43:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/simplemarkersymbol-not-displaying-all-map-features/m-p/624238#M16063</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2012-02-07T17:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: SimpleMarkerSymbol not displaying all map features</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/simplemarkersymbol-not-displaying-all-map-features/m-p/624239#M16064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;BINGO - that was it - Thank you!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2012 18:51:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/simplemarkersymbol-not-displaying-all-map-features/m-p/624239#M16064</guid>
      <dc:creator>MattSimmons</dc:creator>
      <dc:date>2012-02-07T18:51:45Z</dc:date>
    </item>
  </channel>
</rss>

