<?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: Map.graphics.add() not showing points on the map in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155864#M14503</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Your graphics might actually be getting added. I would recommend commenting out the map.spatialReference line that is giving you the error statement just for now and run your code, then try to zoom as far away as possible. Your point graphics might be appearing in a whole other part of the globe, in which case you then know for sure that you have a projection issue&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Nov 2013 15:38:36 GMT</pubDate>
    <dc:creator>KaitlynnDavis</dc:creator>
    <dc:date>2013-11-14T15:38:36Z</dc:date>
    <item>
      <title>Map.graphics.add() not showing points on the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155861#M14500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have inherited an ArcGIS JavaScript API project. I am very new to this API in particular and ArcGIS in general. Currently, one part of the code is very problematic--populating the map with some query task's results. Here is a code snippet. In the debugger I can see the returned results, including geometry of individual result rows. But they never show up on the map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp; function showResults(results) {//This bounds the results into the data grid from doFind() function &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var symbol = new esri.symbol.SimpleFillSymbol(esri.symbol.SimpleFillSymbol.STYLE_SOLID, new esri.symbol.SimpleLineSymbol(esri.symbol.SimpleLineSymbol.STYLE_SOLID, new dojo.Color([98,194,204]), 200), new dojo.Color([98,194,204,0.5]));&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(var i=0; i &amp;lt; results.features.length; i++){ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //map.graphics.add(results.features&lt;I&gt;); &amp;nbsp;&amp;nbsp;&amp;nbsp; var graphic = results.features&lt;I&gt;; &amp;nbsp;&amp;nbsp;&amp;nbsp; graphic.setSymbol(symbol); &amp;nbsp;&amp;nbsp;&amp;nbsp; map.graphics.add(graphic); &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; &lt;/I&gt;&lt;/I&gt;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What could be happening? I don't think posting thousands of line of code will help. But the debugger does show information for each row, such as:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;map.graphics.graphics.geometry[0]-&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; - _shape=null&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- type=point&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- x= 283265&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- y= 3955658&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- symbol [object data]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and when I go to:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="http://myserver/arcgis/rest/services/NPS_Location_Search/MapServer/0" rel="nofollow" target="_blank"&gt;http://myserver/arcgis/rest/services/NPS_Location_Search/MapServer/0&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;then, under Drawing Info, I can see the colored dot object for Symbol.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can give more info about how the various maps are laid out if that helps?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Meengla&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Nov 2013 18:25:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155861#M14500</guid>
      <dc:creator>IrfanClemson</dc:creator>
      <dc:date>2013-11-13T18:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: Map.graphics.add() not showing points on the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155862#M14501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You mway want to make sure the results are in the proper spatial reference.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Make sure you have this in your code some where before executing the QueryTask.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;query.outSpatialReference = map.spatialReference;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="https://developers.arcgis.com/en/javascript/jsapi/query-amd.html#outspatialreference" rel="nofollow" target="_blank"&gt;https://developers.arcgis.com/en/javascript/jsapi/query-amd.html#outspatialreference&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This has bitten me on more than one occasion.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Nov 2013 19:16:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155862#M14501</guid>
      <dc:creator>ReneRubalcava</dc:creator>
      <dc:date>2013-11-13T19:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Map.graphics.add() not showing points on the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155863#M14502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;@Odoe,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I just put the line query.outSpatialReference = map.spatialReference;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;before query.execute function and now get an error like '_3db undefined'; this error's stack seems to be from:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;require({cache:{"esri/layers/TimeReference":function(){define(["dojo/_ ...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I did put a dojo.require("esri.SpatialReference"); toward the top of the javascript file--where other 'require' are but still the same error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I will research the cause of this latest problem... If someone knows then please save me some time--it's been enough struggle with this already.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Nov 2013 10:26:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155863#M14502</guid>
      <dc:creator>IrfanClemson</dc:creator>
      <dc:date>2013-11-14T10:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: Map.graphics.add() not showing points on the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155864#M14503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Your graphics might actually be getting added. I would recommend commenting out the map.spatialReference line that is giving you the error statement just for now and run your code, then try to zoom as far away as possible. Your point graphics might be appearing in a whole other part of the globe, in which case you then know for sure that you have a projection issue&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Nov 2013 15:38:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155864#M14503</guid>
      <dc:creator>KaitlynnDavis</dc:creator>
      <dc:date>2013-11-14T15:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: Map.graphics.add() not showing points on the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155865#M14504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;@Kait,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Okay, I commented out the &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;query.outSpatialReference =&amp;nbsp; map.spatialReference;//&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;line and then did the query and then zoomed out--and once I tried to zoom out of the extents of the US continental (the lower 48) I saw the same error as above: '_3eb undefined'; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;so even though the query.outSpatialReference is commented out I am getting the same error. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I tend to agree with you and @Odoe that this is some extent issue?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 11:16:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155865#M14504</guid>
      <dc:creator>IrfanClemson</dc:creator>
      <dc:date>2013-11-15T11:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: Map.graphics.add() not showing points on the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155866#M14505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am getting exactly the same problem , map.graphics.add() is not showing the gaphics.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I had to change my code to from queryTask.execute() to esri.requst i am faicng this issue ever since.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;my query had below condition:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
var qTask= new QueryTask(queryTaskUrl);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var query = new Query();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.returnGeometry = true;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.maxAllowableOffset = 4326;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.where = executableQuery;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.spatialRelationship = Query.SPATIAL_REL_CONTAINS;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var spRef = new esri.SpatialReference({
&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; wkid: 102100
&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; query.outSpatialReference = spRef&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;hence i changed my code to &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;var spRef = new esri.SpatialReference({
&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; wkid: 102100
&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; var queryRequest = esriRequest({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; url : queryTaskUrl,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; content : {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; f : "json",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; returnGeometry: true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where : executableQuery,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outSR:spRef ,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; maxAllowableOffset:4326,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; spatialRel:"esriSpatialRelContains"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; callbackParamName : "callback"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }, {usePost : true});
&amp;nbsp;&amp;nbsp; handleAs : "json",
&amp;nbsp;&amp;nbsp;&amp;nbsp; queryRequest.then(showResults, function (error) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log("Error: ", error.message);
&amp;nbsp;&amp;nbsp;&amp;nbsp; });


var color="#919191";
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var symbol = new SimpleFillSymbol(SimpleFillSymbol.STYLE_SOLID, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new Color("#AED8EC"), 1), new Color(color));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.forEach(featureSet.features, function(feature){
&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; console.log(" iterating each feaures " +feature);
&amp;nbsp;&amp;nbsp;&amp;nbsp; //var graphic = new FeatureSet(feature);
&amp;nbsp;&amp;nbsp;&amp;nbsp; var graphic=new FeatureSet(feature);
&amp;nbsp;&amp;nbsp;&amp;nbsp; //var graph = new Graphic(graphic);
&amp;nbsp;&amp;nbsp;&amp;nbsp; graphic.setSymbol(symbol );
&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(" graphic feaures " +graphic.symbol.color);
&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(" graphic visible " +graphic.visible);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.graphics.add(graphic); 
&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; catch (e) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(" issue in iterator " + e);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;now map.graphics.add() does not show up &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;but when i change &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;belwo line&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
outSR:map.spatialReference&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;graphics shows but it not exactly as expected hence how do i know what is exact valuel&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:16:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155866#M14505</guid>
      <dc:creator>vinayb</dc:creator>
      <dc:date>2021-12-11T08:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: Map.graphics.add() not showing points on the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155867#M14506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;@VinayBa,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried to changed to your code but in the showResults function I am only getting field names in the results--not actual data. If I could get featuresets then maybe the symbols would at least show--as in your case.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I may have to recreate this application--it has so many problems and for someone like me who is barely getting started there are too many fires to put out during the learning process.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 14:08:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155867#M14506</guid>
      <dc:creator>IrfanClemson</dc:creator>
      <dc:date>2013-11-15T14:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: Map.graphics.add() not showing points on the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155868#M14507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry my&amp;nbsp; code is not solution to ur problem ,&amp;nbsp; i have same problem as yours .But for your problem check from desktop tool the projection&amp;nbsp; sysrtem and spatialrefrence to use.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 15:12:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155868#M14507</guid>
      <dc:creator>vinayb</dc:creator>
      <dc:date>2013-11-15T15:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: Map.graphics.add() not showing points on the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155869#M14508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;what type of geometry are you returning?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Your Subject says "points" but your code is using a fill symbol, which is polygon&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 15:26:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155869#M14508</guid>
      <dc:creator>JeffPace</dc:creator>
      <dc:date>2013-11-15T15:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Map.graphics.add() not showing points on the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155870#M14509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Sorry my&amp;nbsp; code is not solution to ur problem ,&amp;nbsp; i have same problem as yours .But for your problem check from desktop tool the projection&amp;nbsp; sysrtem and spatialrefrence to use.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry, I don't understand. What should I tell the person who published the .mxd to the server to change and republish?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 15:26:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155870#M14509</guid>
      <dc:creator>IrfanClemson</dc:creator>
      <dc:date>2013-11-15T15:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Map.graphics.add() not showing points on the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155871#M14510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;what type of geometry are you returning?&lt;BR /&gt;&lt;BR /&gt;Your Subject says "points" but your code is using a fill symbol, which is polygon&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In the debug I see the geometry as type of Point.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So I guess I should change the following line?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;var symbol = new esri.symbol.SimpleFillSymbol(esri.symbol.SimpleFillSymbol.STYLE_SOLID, new esri.symbol.SimpleLineSymbol(esri.symbol.SimpleLineSymbol.STYLE_SOLID, new dojo.Color([98,194,204]), 4), new dojo.Color([98,194,204,0.5]));&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 15:31:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155871#M14510</guid>
      <dc:creator>IrfanClemson</dc:creator>
      <dc:date>2013-11-15T15:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Map.graphics.add() not showing points on the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155872#M14511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Progress! If I change the symbol to:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;var symbol = new esri.symbol.SimpleMarkerSymbol().setStyle(esri.symbol.SimpleMarkerSymbol.STYLE_SOLID);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;then they do show up on the map--although just about half way across the world with seemingly the same latitude and now zooming out doesn NOT show the '_3be' error I mention above...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 15:57:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155872#M14511</guid>
      <dc:creator>IrfanClemson</dc:creator>
      <dc:date>2013-11-15T15:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: Map.graphics.add() not showing points on the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155873#M14512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;symbols are now showing up on their proper location on the map. I had to put in this line of code again (thanks @Odoe!):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;query.outSpatialReference = map.spatialReference;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you all very much! I think next I will need to work out zoom map location from a result grid--but that is a different topic.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 16:08:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155873#M14512</guid>
      <dc:creator>IrfanClemson</dc:creator>
      <dc:date>2013-11-15T16:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Map.graphics.add() not showing points on the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155874#M14513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;sp it looks like two issues, spatial reference and symbology.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;IF they draw the query is good and symbology fixed &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now you just need to specify the correct outSpatialReference in the query parameters, as mentioned above&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 16:09:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155874#M14513</guid>
      <dc:creator>JeffPace</dc:creator>
      <dc:date>2013-11-15T16:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: Map.graphics.add() not showing points on the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155875#M14514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;symbols are now showing up on their proper location on the map. I had to put in this line of code again (thanks @Odoe!):&lt;BR /&gt;query.outSpatialReference = map.spatialReference;&lt;BR /&gt;&lt;BR /&gt;Thank you all very much! I think next I will need to work out zoom map location from a result grid--but that is a different topic.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;great! if you could mark either odoe's or my post as the answer (since we each got half, doesnt matter whom) that would be appreciated (just click the check mark on the right).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 16:11:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155875#M14514</guid>
      <dc:creator>JeffPace</dc:creator>
      <dc:date>2013-11-15T16:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: Map.graphics.add() not showing points on the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155876#M14515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;great! if you could mark either odoe's or my post as the answer (since we each got half, doesnt matter whom) that would be appreciated (just click the check mark on the right).&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Marked--it was really 50/50 solution between the two of you (Jeff.pace and @Odoe). Without specifying the correct symbol the map wouldn't show the symbol and without inputting the correct spatial info the symbols would show but--in Africa--which I would have missed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you both again!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 16:21:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155876#M14515</guid>
      <dc:creator>IrfanClemson</dc:creator>
      <dc:date>2013-11-15T16:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: Map.graphics.add() not showing points on the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155877#M14516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Marked--it was really 50/50 solution between the two of you (Jeff.pace and @Odoe). Without specifying the correct symbol the map wouldn't show the symbol and without inputting the correct spatial info the symbols would show but--in Africa--which I would have missed.&lt;BR /&gt;&lt;BR /&gt;Thank you both again!&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In addition to the marking the post as answered, you should also use the up arrows to show which posts were helpful. This will also reward Jeff's input.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 16:42:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-graphics-add-not-showing-points-on-the-map/m-p/155877#M14516</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2013-11-15T16:42:43Z</dc:date>
    </item>
  </channel>
</rss>

