<?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 Can ArcGIS Server render Mapbox Vector Tiles? in Developers Questions</title>
    <link>https://community.esri.com/t5/developers-questions/can-arcgis-server-render-mapbox-vector-tiles/m-p/843315#M5475</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;TABLE style="color: #242729; background-color: rgba(248, 248, 248, 0.6); border: 0px; font-size: 13px;"&gt;&lt;TBODY style="border: 0px; font-weight: inherit; font-size: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-size: inherit;"&gt;&lt;TD class="" style="border: 0px; font-weight: inherit; font-size: inherit; padding: 0px 15px 0px 0px;"&gt;&lt;DIV class="" style="border: 0px; font-weight: inherit; font-size: inherit;"&gt;&lt;SPAN class="" style="color: #6a737c; border: 0px; font-weight: inherit; font-size: 20px; margin: 8px 0px;"&gt;1&lt;/SPAN&gt;&lt;A style="color: #358daa; border: 0px; font-weight: inherit; text-decoration: none; text-indent: -9999em; font-size: 1px; margin: 0px auto 10px;" title="This question does not show any research effort; it is unclear or not useful" target="_blank"&gt;down vote&lt;/A&gt;&lt;A href="https://gis.stackexchange.com/questions/272521/can-arcgis-server-render-mapbox-vector-tiles" style="color: #358daa; border: 0px; font-weight: inherit; text-decoration: none; text-indent: -9999em; font-size: 1px; margin: 0px auto 2px;" title="Click to mark as favorite question (click again to undo)" rel="nofollow noopener noreferrer" target="_blank"&gt;favorite&lt;/A&gt;&lt;DIV class="" style="border: 0px; font-weight: inherit; font-size: inherit;"&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;TD class="" style="border: 0px; font-weight: inherit; font-size: inherit;"&gt;&lt;DIV style="border: 0px; font-weight: inherit; font-size: inherit;"&gt;&lt;DIV class="" style="border: 0px; font-weight: inherit; margin: 0px 0px 5px;"&gt;&lt;P style="border: 0px; font-weight: inherit; font-size: inherit; margin: 0px 0px 1em;"&gt;I am planning to build an application using Mapbox GL JS. All the data sources I need to import are stored on an ArcGIS server 10.5.&lt;/P&gt;&lt;P style="border: 0px; font-weight: inherit; font-size: inherit; margin: 0px 0px 1em;"&gt;There are several feature layers on this server which I'll be able to render in Mapbox GL by requesting GeoJSON from the server using code like&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://stackoverflow.com/questions/43798531/consume-arcgis-server-rest-services-api-into-mapbox-gl-api" style="color: #358daa; border: 0px; font-weight: inherit; text-decoration: none; font-size: inherit;" rel="nofollow noopener noreferrer" target="_blank"&gt;from this example&lt;/A&gt;.&lt;/P&gt;&lt;P style="border: 0px; font-weight: inherit; font-size: inherit; margin: 0px 0px 1em;"&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN&gt;map.on('load', function () {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Add a layer showing the city parks&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.addLayer({&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'id': 'parks-layer',&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'type': 'fill',&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'source': {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'type': 'geojson',&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'data': '&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fservices.arcgis.com%2FV6ZHFr6zdgNZuVG0%2FArcGIS%2Frest%2Fservices%2FCity_of_Redlands_Parks%2FFeatureServer%2F0%2Fquery%3Fwhere%3D1%253D1%26outSR%3D4326%26f%3Dpgeojson" target="_blank"&gt;https://services.arcgis.com/V6ZHFr6zdgNZuVG0/ArcGIS/rest/services/City_of_Redlands_Parks/FeatureServer/0/query?where=1%3D1&amp;amp;outSR=4326&amp;amp;f=pgeojson&lt;/A&gt;&lt;SPAN&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; 'paint': {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'fill-color': 'rgba(200, 100, 240, 0.3)',&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'fill-outline-color': 'rgba(200, 100, 240, 1)'&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;/SPAN&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P style="border: 0px; font-weight: inherit; font-size: inherit; margin: 0px 0px 1em;"&gt;&lt;SPAN style="background-color: rgba(248, 248, 248, 0.6);"&gt;This will work fine for datasets that are smaller and won't slow down the application. There are also larger datasets on the server such as land-ownership which are quite large. Is there any way to request mapbox vector tiles from an ArcGIS server for rendering in Mapbox GL JS?&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="border: 0px; font-weight: inherit; font-size: inherit; margin: 0px 0px 1em;"&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 10:19:42 GMT</pubDate>
    <dc:creator>JoshGage</dc:creator>
    <dc:date>2021-12-12T10:19:42Z</dc:date>
    <item>
      <title>Can ArcGIS Server render Mapbox Vector Tiles?</title>
      <link>https://community.esri.com/t5/developers-questions/can-arcgis-server-render-mapbox-vector-tiles/m-p/843315#M5475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;TABLE style="color: #242729; background-color: rgba(248, 248, 248, 0.6); border: 0px; font-size: 13px;"&gt;&lt;TBODY style="border: 0px; font-weight: inherit; font-size: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-size: inherit;"&gt;&lt;TD class="" style="border: 0px; font-weight: inherit; font-size: inherit; padding: 0px 15px 0px 0px;"&gt;&lt;DIV class="" style="border: 0px; font-weight: inherit; font-size: inherit;"&gt;&lt;SPAN class="" style="color: #6a737c; border: 0px; font-weight: inherit; font-size: 20px; margin: 8px 0px;"&gt;1&lt;/SPAN&gt;&lt;A style="color: #358daa; border: 0px; font-weight: inherit; text-decoration: none; text-indent: -9999em; font-size: 1px; margin: 0px auto 10px;" title="This question does not show any research effort; it is unclear or not useful" target="_blank"&gt;down vote&lt;/A&gt;&lt;A href="https://gis.stackexchange.com/questions/272521/can-arcgis-server-render-mapbox-vector-tiles" style="color: #358daa; border: 0px; font-weight: inherit; text-decoration: none; text-indent: -9999em; font-size: 1px; margin: 0px auto 2px;" title="Click to mark as favorite question (click again to undo)" rel="nofollow noopener noreferrer" target="_blank"&gt;favorite&lt;/A&gt;&lt;DIV class="" style="border: 0px; font-weight: inherit; font-size: inherit;"&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;TD class="" style="border: 0px; font-weight: inherit; font-size: inherit;"&gt;&lt;DIV style="border: 0px; font-weight: inherit; font-size: inherit;"&gt;&lt;DIV class="" style="border: 0px; font-weight: inherit; margin: 0px 0px 5px;"&gt;&lt;P style="border: 0px; font-weight: inherit; font-size: inherit; margin: 0px 0px 1em;"&gt;I am planning to build an application using Mapbox GL JS. All the data sources I need to import are stored on an ArcGIS server 10.5.&lt;/P&gt;&lt;P style="border: 0px; font-weight: inherit; font-size: inherit; margin: 0px 0px 1em;"&gt;There are several feature layers on this server which I'll be able to render in Mapbox GL by requesting GeoJSON from the server using code like&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://stackoverflow.com/questions/43798531/consume-arcgis-server-rest-services-api-into-mapbox-gl-api" style="color: #358daa; border: 0px; font-weight: inherit; text-decoration: none; font-size: inherit;" rel="nofollow noopener noreferrer" target="_blank"&gt;from this example&lt;/A&gt;.&lt;/P&gt;&lt;P style="border: 0px; font-weight: inherit; font-size: inherit; margin: 0px 0px 1em;"&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN&gt;map.on('load', function () {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Add a layer showing the city parks&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.addLayer({&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'id': 'parks-layer',&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'type': 'fill',&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'source': {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'type': 'geojson',&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'data': '&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fservices.arcgis.com%2FV6ZHFr6zdgNZuVG0%2FArcGIS%2Frest%2Fservices%2FCity_of_Redlands_Parks%2FFeatureServer%2F0%2Fquery%3Fwhere%3D1%253D1%26outSR%3D4326%26f%3Dpgeojson" target="_blank"&gt;https://services.arcgis.com/V6ZHFr6zdgNZuVG0/ArcGIS/rest/services/City_of_Redlands_Parks/FeatureServer/0/query?where=1%3D1&amp;amp;outSR=4326&amp;amp;f=pgeojson&lt;/A&gt;&lt;SPAN&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; 'paint': {&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'fill-color': 'rgba(200, 100, 240, 0.3)',&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'fill-outline-color': 'rgba(200, 100, 240, 1)'&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;/SPAN&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P style="border: 0px; font-weight: inherit; font-size: inherit; margin: 0px 0px 1em;"&gt;&lt;SPAN style="background-color: rgba(248, 248, 248, 0.6);"&gt;This will work fine for datasets that are smaller and won't slow down the application. There are also larger datasets on the server such as land-ownership which are quite large. Is there any way to request mapbox vector tiles from an ArcGIS server for rendering in Mapbox GL JS?&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="border: 0px; font-weight: inherit; font-size: inherit; margin: 0px 0px 1em;"&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:19:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/can-arcgis-server-render-mapbox-vector-tiles/m-p/843315#M5475</guid>
      <dc:creator>JoshGage</dc:creator>
      <dc:date>2021-12-12T10:19:42Z</dc:date>
    </item>
  </channel>
</rss>

