<?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 Hello i am using search widget for 3d where as per api i have also declared feature layer url but the output of search result showing somewhere else in a wrong position in the map  in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hello-i-am-using-search-widget-for-3d-where-as-per/m-p/75039#M6801</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am getting the below error,Thank you in advance&lt;/P&gt;&lt;P&gt;dojo.js:334 [esri.views.3d.state.ViewStateManager] #goTo() Failed to create camera from target, no layerview has been found for the layer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Jul 2019 07:00:40 GMT</pubDate>
    <dc:creator>AnupamSharma</dc:creator>
    <dc:date>2019-07-24T07:00:40Z</dc:date>
    <item>
      <title>Hello i am using search widget for 3d where as per api i have also declared feature layer url but the output of search result showing somewhere else in a wrong position in the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hello-i-am-using-search-widget-for-3d-where-as-per/m-p/75039#M6801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am getting the below error,Thank you in advance&lt;/P&gt;&lt;P&gt;dojo.js:334 [esri.views.3d.state.ViewStateManager] #goTo() Failed to create camera from target, no layerview has been found for the layer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jul 2019 07:00:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hello-i-am-using-search-widget-for-3d-where-as-per/m-p/75039#M6801</guid>
      <dc:creator>AnupamSharma</dc:creator>
      <dc:date>2019-07-24T07:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: Hello i am using search widget for 3d where as per api i have also declared feature layer url but the output of search result showing somewhere else in a wrong position in the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hello-i-am-using-search-widget-for-3d-where-as-per/m-p/75040#M6802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the same problem since upgrading API version (4.9 to 4.12).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jul 2019 13:35:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hello-i-am-using-search-widget-for-3d-where-as-per/m-p/75040#M6802</guid>
      <dc:creator>FlavieMoraux</dc:creator>
      <dc:date>2019-07-24T13:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: Hello i am using search widget for 3d where as per api i have also declared feature layer url but the output of search result showing somewhere else in a wrong position in the map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hello-i-am-using-search-widget-for-3d-where-as-per/m-p/75041#M6803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This workaround is working for me (with API 4.12)&amp;nbsp;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Desactivate zoom on result&lt;/P&gt;&lt;P&gt;Foreach widget source set property "autoNavigate" to false&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Zoom programatically on result&lt;/P&gt;&lt;P&gt;on(widget, "search-complete", function(event) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if (event.results[0].results[0].feature.geometry.type === "point") {&lt;/P&gt;&lt;P&gt;&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;view.goTo({&lt;/P&gt;&lt;P&gt;&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;target : event.results[0].results[0].feature.geometry,&lt;/P&gt;&lt;P&gt;&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;zoom : 15&lt;/P&gt;&lt;P&gt;&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;});&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;} else {&lt;/P&gt;&lt;P&gt;&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;view.goTo({event.results[0].results[0].extent});&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jul 2019 14:16:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/hello-i-am-using-search-widget-for-3d-where-as-per/m-p/75041#M6803</guid>
      <dc:creator>FlavieMoraux</dc:creator>
      <dc:date>2019-07-24T14:16:34Z</dc:date>
    </item>
  </channel>
</rss>

