<?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 find the point from provided latitude and longitude? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-find-the-point-from-provided-latitude-and/m-p/193196#M17820</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;From the JS API side of things, this is roughly what you would do:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;OL&gt;&lt;BR /&gt;&lt;LI&gt;Take your lat/long location and create a new &lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/point.html" rel="nofollow" target="_blank"&gt;point geometry&lt;/A&gt;&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/extent.html#expand" rel="nofollow" target="_blank"&gt;Buffer the point's geometry&lt;/A&gt; slightly and then provide the buffered geometry as the geometry parameter for a new &lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/query.html" rel="nofollow" target="_blank"&gt;query&lt;/A&gt;&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Finally, use &lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/querytask.html" rel="nofollow" target="_blank"&gt;queryTask&lt;/A&gt; to query your appropriate data layer (I'm assuming it's a &lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/featurelayer.html" rel="nofollow" target="_blank"&gt;featureLayer&lt;/A&gt;)&lt;/LI&gt;&lt;BR /&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Apr 2013 16:16:18 GMT</pubDate>
    <dc:creator>SteveCole</dc:creator>
    <dc:date>2013-04-22T16:16:18Z</dc:date>
    <item>
      <title>How to find the point from provided latitude and longitude?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-find-the-point-from-provided-latitude-and/m-p/193194#M17818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: usuday&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How to find the point from provided latitude and longitude?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2013 08:30:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-find-the-point-from-provided-latitude-and/m-p/193194#M17818</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2013-04-22T08:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to find the point from provided latitude and longitude?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-find-the-point-from-provided-latitude-and/m-p/193195#M17819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: rborchert&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Use the Go to XY tool.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If this is something you are going to do occasionally on demand this tool will do what you want.&amp;nbsp; If you want to add a whole bunch of x,y locations at the same time the procedure is different.&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Right click next to a tool bar and bring up the customize dialog. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Click on Commands and do a search for&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Go To XY&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The tool should show up. You can drag it into any toolbar.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There is a drop down menu as part of the toolbar that will open when you choose this tool that you can set whatever units you are using.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;How to find the point from provided latitude and longitude?&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2013 14:10:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-find-the-point-from-provided-latitude-and/m-p/193195#M17819</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2013-04-22T14:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to find the point from provided latitude and longitude?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-find-the-point-from-provided-latitude-and/m-p/193196#M17820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;From the JS API side of things, this is roughly what you would do:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;OL&gt;&lt;BR /&gt;&lt;LI&gt;Take your lat/long location and create a new &lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/point.html" rel="nofollow" target="_blank"&gt;point geometry&lt;/A&gt;&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/extent.html#expand" rel="nofollow" target="_blank"&gt;Buffer the point's geometry&lt;/A&gt; slightly and then provide the buffered geometry as the geometry parameter for a new &lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/query.html" rel="nofollow" target="_blank"&gt;query&lt;/A&gt;&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Finally, use &lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/querytask.html" rel="nofollow" target="_blank"&gt;queryTask&lt;/A&gt; to query your appropriate data layer (I'm assuming it's a &lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/featurelayer.html" rel="nofollow" target="_blank"&gt;featureLayer&lt;/A&gt;)&lt;/LI&gt;&lt;BR /&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2013 16:16:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-find-the-point-from-provided-latitude-and/m-p/193196#M17820</guid>
      <dc:creator>SteveCole</dc:creator>
      <dc:date>2013-04-22T16:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to find the point from provided latitude and longitude?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-find-the-point-from-provided-latitude-and/m-p/193197#M17821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: usuday&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks Steve.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It resolved the issue.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Apr 2013 11:37:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-find-the-point-from-provided-latitude-and/m-p/193197#M17821</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2013-04-23T11:37:05Z</dc:date>
    </item>
  </channel>
</rss>

