From 728f045d3edb7ebe3d09c240fd3159a282c6c29e Mon Sep 17 00:00:00 2001 From: pjsier Date: Sat, 2 Nov 2024 17:24:57 -0400 Subject: [PATCH] refactor: wip swap tile url --- client/src/utils/map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/utils/map.js b/client/src/utils/map.js index 2ce5d01..e639a30 100644 --- a/client/src/utils/map.js +++ b/client/src/utils/map.js @@ -61,5 +61,5 @@ export function coordsFromWKT(wkt) { // TODO: Build in configurability here export function getTileLayer(layer, year) { // import.meta.env.VITE_TILE_URL_BASE ?? `https://property-praxis-dev-assets.s3.amazonaws.com/tiles` - return `https://property-praxis-dev-assets.s3.amazonaws.com/tiles/dev/${layer}-${year}/{z}/{x}/{y}.pbf` + return `https://property-praxis-prod-assets.s3.amazonaws.com/tiles/${layer}-${year}/{z}/{x}/{y}.pbf` }