<?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: Add markers in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/add-markers/m-p/70071#M6197</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Akbar,&lt;/P&gt;&lt;P&gt;I think you might want to look into using the &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html"&gt;Editor widget&lt;/A&gt;. Here's a sample:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/sample-code/widgets-editor-basic/index.html" title="https://developers.arcgis.com/javascript/latest/sample-code/widgets-editor-basic/index.html"&gt;Edit features with the Editor widget | ArcGIS API for JavaScript 4.14&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, here's a sample of using the Editor widget with Popups:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/sample-code/popup-editaction/index.html" title="https://developers.arcgis.com/javascript/latest/sample-code/popup-editaction/index.html"&gt;Popup with edit action | ArcGIS API for JavaScript 4.14&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hopefully this helps!&lt;/P&gt;&lt;P&gt;- Anne&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Feb 2020 21:13:20 GMT</pubDate>
    <dc:creator>AnneFitz</dc:creator>
    <dc:date>2020-02-24T21:13:20Z</dc:date>
    <item>
      <title>Add markers</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/add-markers/m-p/70065#M6191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys. I am new to ArcGIS API, but have worked for a few months with Google Maps API. I was wondering if it's possible to add markers on a basemap (Client-side) with ArcGIS API, similar to dropping markers with click or double-clicking&amp;nbsp;in Google Maps API?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Feb 2020 22:10:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/add-markers/m-p/70065#M6191</guid>
      <dc:creator>AkbarBakhshi</dc:creator>
      <dc:date>2020-02-21T22:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: Add markers</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/add-markers/m-p/70066#M6192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you can add point, line, and polygon graphics client side using the Javascript API. &amp;nbsp;Here is an example of how to&amp;nbsp;add a point graphic:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="token function"&gt;require&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;
  &lt;SPAN class="string token"&gt;"esri/Map"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
  &lt;SPAN class="string token"&gt;"esri/views/MapView"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
  &lt;SPAN class="string token"&gt;"esri/Graphic"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
  &lt;SPAN class="string token"&gt;"esri/layers/GraphicsLayer"&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;function&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Map&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; MapView&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; Graphic&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; GraphicsLayer&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; graphicsLayer &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;GraphicsLayer&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
map&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;add&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;graphicsLayer&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; point &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt; type&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"point"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; longitude&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;118.80657463861&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; latitude&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;34.0005930608889&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt; 
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; simpleMarkerSymbol &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt; type&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"simple-marker"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; color&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;226&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;119&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;40&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;// orange outline: { color: [255, 255, 255], // white width: 1 } };&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; pointGraphic &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;Graphic&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt; geometry&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; point&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; symbol&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; simpleMarkerSymbol &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt; 
graphicsLayer&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;add&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;pointGraphic&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍‍
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Source:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/labs/javascript/display-point-line-and-polygon-graphics/" title="https://developers.arcgis.com/labs/javascript/display-point-line-and-polygon-graphics/" rel="nofollow noopener noreferrer" target="_blank"&gt;Display point, line, and polygon graphics | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:41:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/add-markers/m-p/70066#M6192</guid>
      <dc:creator>WilliamCraft</dc:creator>
      <dc:date>2021-12-10T22:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: Add markers</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/add-markers/m-p/70067#M6193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's a Codepen for how to add a graphic on click:&amp;nbsp;&lt;A class="link-titled" href="https://codepen.io/annefitz/pen/yLNVogB" title="https://codepen.io/annefitz/pen/yLNVogB" rel="nofollow noopener noreferrer" target="_blank"&gt;https://codepen.io/annefitz/pen/yLNVogB&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you wanted to change it to on double-click, you would do the following:&amp;nbsp;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;view.on("double-click", function(event){
   createGraphic(event.mapPoint.latitude, event.mapPoint.longitude);
});‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Let me know if you have any questions!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:41:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/add-markers/m-p/70067#M6193</guid>
      <dc:creator>AnneFitz</dc:creator>
      <dc:date>2021-12-10T22:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: Add markers</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/add-markers/m-p/70068#M6194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anne,&lt;/P&gt;&lt;P&gt;Thanks for the help. I am trying to drop markers (which I now can with your help) and then open an infowindow type of thing (similar to google maps API - &lt;A class="link-titled" href="https://developers.google.com/maps/documentation/javascript/infowindows" title="https://developers.google.com/maps/documentation/javascript/infowindows"&gt;Info Windows &amp;nbsp;|&amp;nbsp; Maps JavaScript API &amp;nbsp;|&amp;nbsp; Google Developers&lt;/A&gt;&amp;nbsp;). Do you know of a topic in the documentation that I can take a look that explains these kind of things?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Feb 2020 23:16:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/add-markers/m-p/70068#M6194</guid>
      <dc:creator>AkbarBakhshi</dc:creator>
      <dc:date>2020-02-22T23:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: Add markers</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/add-markers/m-p/70069#M6195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Akbar,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, I'd recommend taking a look at the Popup or Feature Widget documentation:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html" title="https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html"&gt;Popup | ArcGIS API for JavaScript 4.14&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature.html" title="https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature.html"&gt;Feature | ArcGIS API for JavaScript 4.14&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's a couple samples that might be helpful as well:&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/sample-code/widgets-feature/index.html" title="https://developers.arcgis.com/javascript/latest/sample-code/widgets-feature/index.html"&gt;Feature Widget | ArcGIS API for JavaScript 4.14&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/sample-code/widgets-feature-sidepanel/index.html" title="https://developers.arcgis.com/javascript/latest/sample-code/widgets-feature-sidepanel/index.html"&gt;Feature widget in a side panel | ArcGIS API for JavaScript 4.14&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/sample-code/intro-popup/index.html" title="https://developers.arcgis.com/javascript/latest/sample-code/intro-popup/index.html"&gt;Intro to popups | ArcGIS API for JavaScript 4.14&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/sample-code/intro-popuptemplate/index.html" title="https://developers.arcgis.com/javascript/latest/sample-code/intro-popuptemplate/index.html"&gt;Intro to PopupTemplate | ArcGIS API for JavaScript 4.14&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Feb 2020 18:15:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/add-markers/m-p/70069#M6195</guid>
      <dc:creator>AnneFitz</dc:creator>
      <dc:date>2020-02-24T18:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: Add markers</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/add-markers/m-p/70070#M6196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anne,&lt;/P&gt;&lt;P&gt;This is great info. Thanks a lot! One last question. Take this link as an example:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/sample-code/sandbox/index.html?sample=intro-graphics" title="https://developers.arcgis.com/javascript/latest/sample-code/sandbox/index.html?sample=intro-graphics"&gt;ArcGIS API for JavaScript Sandbox&lt;/A&gt;&amp;nbsp;. How can I have the user input the name, owner and other attributes of let's say the point that they add to the view (by double clicking on the map)?&amp;nbsp;Let's say, I am the user and then I double click on the map to "drop a pin" and then click on the "pin" to add some attributes to it and then save it to my database. I tried replacing the attribute contents with an html "input" field, but didn't work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FYI, I have built&amp;nbsp;a website using Google maps API and then I realized that ArcGIS API is much richer. So, now I am trying to see if I can do this with ArcGIS API instead.&amp;nbsp;Here is&amp;nbsp;a very quick demo of the website:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://drive.google.com/file/d/13j2gJY1husyzW_qfG2w8vbTn8ozy1hkn/view?usp=sharing" title="https://drive.google.com/file/d/13j2gJY1husyzW_qfG2w8vbTn8ozy1hkn/view?usp=sharing"&gt;Website_Demo.mkv - Google Drive&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, long story short, I just want to know if this is possible with ArcGIS API. Your help is much appreciated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Akbar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Feb 2020 20:56:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/add-markers/m-p/70070#M6196</guid>
      <dc:creator>AkbarBakhshi</dc:creator>
      <dc:date>2020-02-24T20:56:12Z</dc:date>
    </item>
    <item>
      <title>Re: Add markers</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/add-markers/m-p/70071#M6197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Akbar,&lt;/P&gt;&lt;P&gt;I think you might want to look into using the &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html"&gt;Editor widget&lt;/A&gt;. Here's a sample:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/sample-code/widgets-editor-basic/index.html" title="https://developers.arcgis.com/javascript/latest/sample-code/widgets-editor-basic/index.html"&gt;Edit features with the Editor widget | ArcGIS API for JavaScript 4.14&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, here's a sample of using the Editor widget with Popups:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/sample-code/popup-editaction/index.html" title="https://developers.arcgis.com/javascript/latest/sample-code/popup-editaction/index.html"&gt;Popup with edit action | ArcGIS API for JavaScript 4.14&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hopefully this helps!&lt;/P&gt;&lt;P&gt;- Anne&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Feb 2020 21:13:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/add-markers/m-p/70071#M6197</guid>
      <dc:creator>AnneFitz</dc:creator>
      <dc:date>2020-02-24T21:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: Add markers</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/add-markers/m-p/70072#M6198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awesome!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for the help. Wish me luck! &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Akbar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Feb 2020 22:03:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/add-markers/m-p/70072#M6198</guid>
      <dc:creator>AkbarBakhshi</dc:creator>
      <dc:date>2020-02-24T22:03:17Z</dc:date>
    </item>
  </channel>
</rss>

