Skip to content

Commit

Permalink
create a url for search_layer, re #10502
Browse files Browse the repository at this point in the history
  • Loading branch information
whatisgalen committed Nov 15, 2024
1 parent 22673d6 commit 5e07bb3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions arches/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
ResourceActivityStreamPageView,
ResourceActivityStreamCollectionView,
)
from arches.app.views.search_layer import SearchLayer
from arches.app.views.plugin import PluginView
from arches.app.views.workflow_history import WorkflowHistoryView
from arches.app.views.concept import RDMView
Expand Down Expand Up @@ -675,6 +676,11 @@
api.MVT.as_view(),
name="mvt",
),
path(
"search-layer/<int:zoom>/<int:x>/<int:y>.pbf",
SearchLayer.as_view(),
name="search_layer",
),
re_path(r"^images$", api.Images.as_view(), name="images"),
re_path(
r"^ontology_properties$",
Expand Down

0 comments on commit 5e07bb3

Please sign in to comment.