Metadata-Version: 2.1
Name: django-leaflet-gpx
Version: 0.1.2
Summary: Simple Django application to include LeafletJS map and display GPX file
Home-page: https://gitlab.com/aloha68/django-leaflet-gpx
License: ISC
Author: Aloha68
Author-email: dev@aloha.im
Requires-Python: >=3.5,<4.0
Classifier: License :: OSI Approved
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: django (>=2.2,<3.0)
Project-URL: Repository, https://gitlab.com/aloha68/django-leaflet-gpx
Description-Content-Type: text/markdown

Simple Django application to include LeafletJS map and display GPX file.

Not documented yet :-/


## Configuration

This is an example of custom configuration

    import os
    
    STATIC_URL = '/static'
    LEAFLET_GPX_ICONS = {
        'markerIcon': {
            'iconUrl': os.path.join(STATIC_URL, 'icons/my-custom-marker.png'),
            'iconSize': [32, 32],
            'iconAnchor': [5, 31],
        }
    }

### LEAFLET_GPX_ICONS

There are three editable icons: 

- **markerIcon**: markers points
- **startIcon**: GPX start point
- **endIcon**: GPX end point

The icon options are the same as those for creating an icon in the Leaflet-JS library.  
Here is a link to the documentation: <https://leafletjs.com/reference-1.5.0.html#icon>


