Skip to content

Commit

Permalink
refactor: use sitla vector tiles
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh committed Apr 16, 2024
1 parent d2ff973 commit cb4b649
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/layer-selector/src/LayerSelectorWithMap.stories.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import LayerSelector from './';
import Map from '@arcgis/core/Map';
import MapView from '@arcgis/core/views/MapView';
import FeatureLayer from '@arcgis/core/layers/FeatureLayer';
import VectorTileLayer from '@arcgis/core/layers/VectorTileLayer';
import TileInfo from '@arcgis/core/layers/support/TileInfo';
import WebTileLayer from '@arcgis/core/layers/WebTileLayer';
import TileLayer from '@arcgis/core/layers/TileLayer';
Expand Down Expand Up @@ -200,8 +201,8 @@ export const landOwnership = () => {
overlays: [
'Address Points',
{
Factory: FeatureLayer,
url: 'https://gis.trustlands.utah.gov/server/rest/services/Ownership/UT_SITLA_Ownership_LandOwnership_WM/FeatureServer/0',
Factory: VectorTileLayer,
url: 'https://gis.trustlands.utah.gov/hosting/rest/services/Hosted/Land_Ownership_WM_VectorTile/VectorTileServer',
id: 'Land Ownership',
opacity: 0.3,
},
Expand Down

0 comments on commit cb4b649

Please sign in to comment.