File tree 3 files changed +15
-3
lines changed
3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,12 @@ Just add map widgets to your django admin forms.
89
89
90
90
![ ] ( https://cloud.githubusercontent.com/assets/1518272/26807500/ad0af4ea-4a4e-11e7-87d6-632f39e438f7.gif )
91
91
92
+
93
+ ##### MapBox Map Point Field Widget
94
+
95
+ ![ ] ( https://user-images.githubusercontent.com/1518272/168497515-f97363f4-6860-410e-9e24-230a2c4233b7.png )
96
+
97
+
92
98
##### Google Map Static Overlay Widget
93
99
This widget is working with <a href =" http://dimsemenov.com/plugins/magnific-popup/ " target =" _blank " >Magnific Popup</a > jQuery plugin.
94
100
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Django Map Widgets
16
16
Configurable, pluggable and more user friendly map widgets for Django PostGIS fields.
17
17
18
18
.. note ::
19
- Check the `project home page <https://github.com/erdem/django-map-widgets/ >`_ for latest updates.
19
+ Please check the `project home page <https://github.com/erdem/django-map-widgets/ >`_ for latest updates.
20
20
21
21
* **Project Home Page ** : `https://github.com/erdem/django-map-widgets <https://github.com/erdem/django-map-widgets/ >`_.
22
22
* **Documentation **: `http://django-map-widgets.readthedocs.io <http://django-map-widgets.readthedocs.io/ >`_.
Original file line number Diff line number Diff line change 3
3
VERSION = (0 , 4 , 0 )
4
4
__version__ = '.' .join (map (str , VERSION ))
5
5
6
+
7
+ LONG_DESCRIPTION = """
8
+ Configurable, pluggable and more user friendly map widgets for Django PostGIS fields.
9
+ Please check the `project home page <https://github.com/erdem/django-map-widgets/>`_ for latest updates.
10
+ """
11
+
12
+
6
13
setup (
7
14
name = 'django-map-widgets' ,
8
15
version = __version__ ,
9
16
description = 'Map widgets for Django PostGIS fields' ,
10
- long_description = 'Configurable, pluggable and more user friendly map widgets for Django PostGIS fields.' ,
17
+ long_description = LONG_DESCRIPTION ,
11
18
long_description_content_type = 'text/x-rst' ,
12
19
author = 'Erdem Ozkol' ,
13
20
25
32
'Programming Language :: Python' ,
26
33
],
27
34
)
28
-
You can’t perform that action at this time.
0 commit comments