<?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: JSAPI 4.0 Levels of Detail - how to set? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/jsapi-4-0-levels-of-detail-how-to-set/m-p/93278#M8479</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you looking for something like LOD in constraints&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#constraints" title="https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#constraints"&gt;MapView | API Reference | ArcGIS API for JavaScript 4.0&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Aug 2016 17:54:41 GMT</pubDate>
    <dc:creator>thejuskambi</dc:creator>
    <dc:date>2016-08-04T17:54:41Z</dc:date>
    <item>
      <title>JSAPI 4.0 Levels of Detail - how to set?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/jsapi-4-0-levels-of-detail-how-to-set/m-p/93277#M8478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi -&lt;/P&gt;&lt;P&gt;I'm trying to figure out how to set the levels of detail at 4.0 to control zoom extents.&amp;nbsp; Is there a way at this time to set at the map or mapview class?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Aug 2016 17:39:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/jsapi-4-0-levels-of-detail-how-to-set/m-p/93277#M8478</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2016-08-04T17:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: JSAPI 4.0 Levels of Detail - how to set?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/jsapi-4-0-levels-of-detail-how-to-set/m-p/93278#M8479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you looking for something like LOD in constraints&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#constraints" title="https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#constraints"&gt;MapView | API Reference | ArcGIS API for JavaScript 4.0&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Aug 2016 17:54:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/jsapi-4-0-levels-of-detail-how-to-set/m-p/93278#M8479</guid>
      <dc:creator>thejuskambi</dc:creator>
      <dc:date>2016-08-04T17:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: JSAPI 4.0 Levels of Detail - how to set?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/jsapi-4-0-levels-of-detail-how-to-set/m-p/93279#M8480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Thejus, that's exactly it, I should have been more clear.&amp;nbsp; I've got my lods var set in an array:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;var myLods = [{"level" : 0, "resolution" : 4891.96981024998, "scale" : 18489297.737236},
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {"level" : 1, "resolution" : 2445.98490512499, "scale" : 9244648.868618} . . . ];&lt;/PRE&gt;&lt;P&gt;then set my view constraints:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;view.constraints = {
&amp;nbsp; effectiveLODs : myLods
&amp;nbsp; };&lt;/PRE&gt;&lt;P&gt;can't see seem to get past an accessor type error&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:34:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/jsapi-4-0-levels-of-detail-how-to-set/m-p/93279#M8480</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2021-12-10T23:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: JSAPI 4.0 Levels of Detail - how to set?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/jsapi-4-0-levels-of-detail-how-to-set/m-p/93280#M8481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got it, thanks for the help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;view.constraints = {
&amp;nbsp; lods : myLods
};&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:34:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/jsapi-4-0-levels-of-detail-how-to-set/m-p/93280#M8481</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2021-12-10T23:34:17Z</dc:date>
    </item>
  </channel>
</rss>

