<?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: Slow layer on webmap. How to switch from json to pbf output format? in ArcGIS Enterprise Portal Questions</title>
    <link>https://community.esri.com/t5/arcgis-enterprise-portal-questions/slow-layer-on-webmap-how-to-switch-from-json-to/m-p/1560159#M15883</link>
    <description>&lt;P&gt;Hi, did you find a solution? I have the same problem&lt;/P&gt;</description>
    <pubDate>Tue, 19 Nov 2024 11:50:22 GMT</pubDate>
    <dc:creator>MauroSantarossa</dc:creator>
    <dc:date>2024-11-19T11:50:22Z</dc:date>
    <item>
      <title>Slow layer on webmap. How to switch from json to pbf output format?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-portal-questions/slow-layer-on-webmap-how-to-switch-from-json-to/m-p/1312557#M13838</link>
      <description>&lt;P&gt;Hi! I am using ArcGIS Maps SDK for Javascript and I have a problem by calling a webmap from ArcGIS Portal. In the webmap there is a couple of feature layer and they are very slow due to the fact that the webmap load them by using json format. In the Rest properties I can see both of them supports the PBF format but I am not figuring out how to force this change.&lt;BR /&gt;&lt;BR /&gt;How can I switch from json to pbf output format? Should I change something in the service or in the map?&lt;BR /&gt;&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2023 14:44:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-portal-questions/slow-layer-on-webmap-how-to-switch-from-json-to/m-p/1312557#M13838</guid>
      <dc:creator>matteorizzi</dc:creator>
      <dc:date>2023-07-27T14:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: Slow layer on webmap. How to switch from json to pbf output format?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-portal-questions/slow-layer-on-webmap-how-to-switch-from-json-to/m-p/1560159#M15883</link>
      <description>&lt;P&gt;Hi, did you find a solution? I have the same problem&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2024 11:50:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-portal-questions/slow-layer-on-webmap-how-to-switch-from-json-to/m-p/1560159#M15883</guid>
      <dc:creator>MauroSantarossa</dc:creator>
      <dc:date>2024-11-19T11:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: Slow layer on webmap. How to switch from json to pbf output format?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-portal-questions/slow-layer-on-webmap-how-to-switch-from-json-to/m-p/1564690#M15946</link>
      <description>&lt;P&gt;Quick update&lt;BR /&gt;In my case: The issue stemmed from the FeatureService, which listed only 'json' in the supportedQueryFormats attribute, even though both individual FeatureLayers included 'pbf' in their supportedQueryFormats. I resolved this by using an interceptor to forcibly add 'pbf' to the supportedQueryFormats of the FeatureService, with a code like this:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;      require(["esri/config"], (esriConfig) =&amp;gt; {
        esriConfig.request.interceptors.push({
          urls: /FeatureServer/,
          after: function (response) {
            response.data.supportedQueryFormats = "JSON,PBF";
          }
        });
      });&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2024 15:29:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-portal-questions/slow-layer-on-webmap-how-to-switch-from-json-to/m-p/1564690#M15946</guid>
      <dc:creator>MauroSantarossa</dc:creator>
      <dc:date>2024-12-04T15:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Slow layer on webmap. How to switch from json to pbf output format?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-portal-questions/slow-layer-on-webmap-how-to-switch-from-json-to/m-p/1580494#M16192</link>
      <description>&lt;P&gt;I think I am having this same issue.&amp;nbsp; I am using OOB Experience Builder and getting PBF errors on my queries.&amp;nbsp; My feature service only has "&lt;STRONG&gt;Supported Query Formats:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;JSON" while my layers have&amp;nbsp; "&lt;STRONG&gt;Supported Query Formats:&amp;nbsp;&lt;/STRONG&gt;JSON, geoJSON, PBF".&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Where do i make your above change?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2025 17:11:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-portal-questions/slow-layer-on-webmap-how-to-switch-from-json-to/m-p/1580494#M16192</guid>
      <dc:creator>MKa</dc:creator>
      <dc:date>2025-01-30T17:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: Slow layer on webmap. How to switch from json to pbf output format?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-portal-questions/slow-layer-on-webmap-how-to-switch-from-json-to/m-p/1586296#M16256</link>
      <description>&lt;P&gt;Hi MKa,&lt;BR /&gt;unfortunately my solution is implemented on a javascript application and not on ExpBuilder. In any case you can place the portion of code at any time before loading your FeatureService.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2025 11:57:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-portal-questions/slow-layer-on-webmap-how-to-switch-from-json-to/m-p/1586296#M16256</guid>
      <dc:creator>MauroSantarossa</dc:creator>
      <dc:date>2025-02-18T11:57:02Z</dc:date>
    </item>
  </channel>
</rss>

