Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 424 Bytes

File metadata and controls

23 lines (19 loc) · 424 Bytes

django-mapshader

Placeholder from Django Mapshader Integration

Installation

pip install django-mapshader

Configuration

  • Add mapshader into INSTALLED_APPS
INSTALLED_APPS - [
  ...
  'django_mapshader'
]
  • Include the django_mapshader URLconf in your project urls.py like this:
path('mapshader/', include('django_mapshader.urls')),