<?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: Where are basemap LOD's stored in web app builder? in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402893#M10750</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please forgive my daftness.&amp;nbsp; Where is this file located? Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Sep 2015 18:59:19 GMT</pubDate>
    <dc:creator>EdBoyle</dc:creator>
    <dc:date>2015-09-04T18:59:19Z</dc:date>
    <item>
      <title>Where are basemap LOD's stored in web app builder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402885#M10742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Has anyone been able to add extra levels of detail (LOD) in an application that was built in web app builder?&amp;nbsp; I know I can add the extra levels using code but I'm not sure which file to add the code to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Brandon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2015 20:00:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402885#M10742</guid>
      <dc:creator>BrandonKeinath1</dc:creator>
      <dc:date>2015-02-16T20:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: Where are basemap LOD's stored in web app builder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402886#M10743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brandon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Due to the fact that WAB uses a web map from AGOL when creating the map object you would have to feed the MapManager.js _processMapOptions function from new code like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _processMapOptions: function(mapOptions) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (!mapOptions) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return;
&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; var ret = lang.clone(mapOptions);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (ret.extent) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ret.extent = new Extent(ret.extent);
&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; if (ret.infoWindow) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ret.infoWindow = new InfoWindow(ret.infoWindow, html.create('div', {}, this.mapDivId));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
//Start new code
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ret.lods = [
&amp;nbsp;&amp;nbsp;&amp;nbsp; {"level" : 0, "resolution" : 0.010986328125, "scale" : 4617149.97766929},
&amp;nbsp;&amp;nbsp;&amp;nbsp; {"level" : 1, "resolution" : 0.0054931640625, "scale" : 2308574.98883465},
&amp;nbsp;&amp;nbsp;&amp;nbsp; {"level" : 2, "resolution" : 0.00274658203125, "scale" : 1154287.49441732},
&amp;nbsp;&amp;nbsp;&amp;nbsp; {"level" : 3, "resolution" : 0.001373291015625, "scale" : 577143.747208662},
&amp;nbsp;&amp;nbsp;&amp;nbsp; {"level" : 4, "resolution" : 0.0006866455078125, "scale" : 288571.873604331}
&amp;nbsp; ];
//end new code
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return ret;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/PRE&gt;&lt;P&gt;BTW you would have to specify &lt;STRONG&gt;ALL&lt;/STRONG&gt; the original LODS as well as your additions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:22:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402886#M10743</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T18:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: Where are basemap LOD's stored in web app builder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402887#M10744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply!&amp;nbsp; I will give this a try and let you know how it goes.&amp;nbsp; Is the MapManager.js_processMapOptions function usually in the same file?&amp;nbsp; Also, your response brings up another question we've had regarding WAB.&amp;nbsp; We've been using it to jumpstart our application building as well as for our users who aren't as skilled in pure javascript.&amp;nbsp; But for one of our main applications we'd like to run completely off of our ArcGIS Server and aren't sure how we would use operational layers like we have in the past for flex applications.&amp;nbsp; Can you give me any guidance on this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Brandon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 00:43:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402887#M10744</guid>
      <dc:creator>BrandonKeinath1</dc:creator>
      <dc:date>2015-02-17T00:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: Where are basemap LOD's stored in web app builder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402888#M10745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brandon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; The closest thing (currently) to making WAB more like Flex Viewer (as far as operational and basemap layer from your own server) is to use the Local Layer Widget.&amp;nbsp; &lt;A href="https://community.esri.com/thread/119548"&gt;LocalLayerWidget and AccessifizrWidget&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This widget still does not get past the need to use a AGOL Web Map as the starting point (i.e. setting the LODs and spatial reference). Unless esri changes something the need to use a AGOL web map is going to be a requirement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 00:49:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402888#M10745</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-02-17T00:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: Where are basemap LOD's stored in web app builder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402889#M10746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I like the looks of the LocalLayerWidget.&amp;nbsp; Slightly disappointing that WAB doesn't support operational layers in the same way but not entirely surprising.&amp;nbsp; Our reasoning for wanting to have the operational layers is to not have to purchase additional named user accounts.&amp;nbsp; Is there another way to accomplish this without going the whole way to a completely custom Javascript app?&amp;nbsp; We have our ArcGIS Server tied into AGOL using ADFS.&amp;nbsp; Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Brandon &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 01:08:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402889#M10746</guid>
      <dc:creator>BrandonKeinath1</dc:creator>
      <dc:date>2015-02-17T01:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: Where are basemap LOD's stored in web app builder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402890#M10747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brandon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sure you just publish a web map to your AGOL account that has the spatial reference and LODs that your WAB app will need and then you use the Local Layer widget to overwrite every thing, operational Layers and Basemap, just like Flex Viewer. The only thing the web map will be used for is LODs and Spatial Reference if you use the local Layer widget. The local layer widget allows you to use your own ArcGIS Server services.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 02:34:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402890#M10747</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-02-17T02:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: Where are basemap LOD's stored in web app builder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402891#M10748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was finally able to test your code and it worked like a charm.&amp;nbsp; Since we started talking about this it looks like a new version of web app builder developer edition lets you add extra zoom scales from the user interface.&amp;nbsp; But it must be doing it slightly differently then you had suggested because when I examine the resulting _processMapOptions section in the MapManager.js file I don't see any extra code.&amp;nbsp; Do you, or anyone reading, know how the new version of web app builder developer handles the extra scales?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Brandon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 16:51:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402891#M10748</guid>
      <dc:creator>BrandonKeinath1</dc:creator>
      <dc:date>2015-03-20T16:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Where are basemap LOD's stored in web app builder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402892#M10749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While looking to do this I ended up on this thread, in the spirit of more information for the next person... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the the latest web app builder at the time of this post I added to my config.json the code below which gets dealt with within the api "somewhere".&amp;nbsp; lods is in MapOptions at the same level as the extent.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;"mapOptions": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "extent": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "xmin": -1,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "ymin": -1,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "xmax": -1,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "ymax": 1,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "spatialReference": {
&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; "lods" : [
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 0, "resolution" : 156543.033928, "scale" : 591657527.591555 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 1, "resolution" : 78271.5169639999, "scale" : 295828763.795777 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 2, "resolution" : 39135.7584820001, "scale" : 147914381.897889 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 3, "resolution" : 19567.8792409999, "scale" : 73957190.948944 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 4, "resolution" : 9783.93962049996, "scale" : 36978595.474472 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 5, "resolution" : 4891.96981024998, "scale" : 18489297.737236 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 6, "resolution" : 2445.98490512499, "scale" : 9244648.868618 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 7, "resolution" : 1222.99245256249, "scale" : 4622324.434309 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 8, "resolution" : 611.49622628138, "scale" : 2311162.217155 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 9, "resolution" : 305.748113140558, "scale" : 1155581.108577 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 10, "resolution" : 152.874056570411, "scale" : 577790.554289 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 11, "resolution" : 76.4370282850732, "scale" : 288895.277144 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 12, "resolution" : 38.2185141425366, "scale" : 144447.638572 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 13, "resolution" : 19.1092570712683, "scale" : 72223.819286 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 14, "resolution" : 9.55462853563415, "scale" : 36111.909643 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 15, "resolution" : 4.77731426794937, "scale" : 18055.954822 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 16, "resolution" : 2.38865713397468, "scale" : 9027.977411 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 17, "resolution" : 1.19432856685505, "scale" : 4513.988705 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 18, "resolution" : 0.597164283559817, "scale" : 2256.994353 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 19, "resolution" : 0.298582141647617, "scale" : 1128.497176 },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 20, "resolution": 0.14929107082380833, "scale": 564.248588&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 21, "resolution": 0.074645535411904245, "scale": 282.124294&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { "level" : 22, "resolution": 0.0373227677059521225, "scale": 141.062147&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ]
&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:22:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402892#M10749</guid>
      <dc:creator>TimDine</dc:creator>
      <dc:date>2021-12-11T18:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: Where are basemap LOD's stored in web app builder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402893#M10750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please forgive my daftness.&amp;nbsp; Where is this file located? Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2015 18:59:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402893#M10750</guid>
      <dc:creator>EdBoyle</dc:creator>
      <dc:date>2015-09-04T18:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: Where are basemap LOD's stored in web app builder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402894#M10751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; The config.json is in the root of the app&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[wab install dir]\server\apps\[app num]\config.json&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2015 19:09:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402894#M10751</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-09-04T19:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: Where are basemap LOD's stored in web app builder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402895#M10752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2015 19:14:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402895#M10752</guid>
      <dc:creator>EdBoyle</dc:creator>
      <dc:date>2015-09-04T19:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: Where are basemap LOD's stored in web app builder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402896#M10753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found the problem... I have WAB embedded into my Portal.&amp;nbsp; This method does not work for embedded WAB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2015 20:35:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402896#M10753</guid>
      <dc:creator>EdBoyle</dc:creator>
      <dc:date>2015-09-04T20:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: Where are basemap LOD's stored in web app builder?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402897#M10754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Portal WAB is a whole other situation. I don't have an answer for that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2015 20:48:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/where-are-basemap-lod-s-stored-in-web-app-builder/m-p/402897#M10754</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-09-04T20:48:13Z</dc:date>
    </item>
  </channel>
</rss>

