{ "info": { "author": "Peter Bittner", "author_email": "django@bittner.it", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Communications", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Message Boards" ], "description": "===============================\ndjangocms-maps |latest-version|\n===============================\n\n|build-status| |health| |python-support| |license| |gitter|\n\nA universal maps plugin for django CMS, supporting all major map providers.\n\nSupported online map providers:\n\n- Mapbox OpenStreetMap *powered by* `Leaflet.js`_\n- Bing Maps\n- Google Maps\n- HERE WeGo\n- ViaMichelin\n\nAll map providers require an API key, which you usually get for free by\ncreating a developer account (using the links below).\n\nInstallation\n============\n\nThis plugin requires `django CMS`_ 3.3 (and Django 1.8) or above.\n\n* In your project's `virtualenv`_, run ``pip install djangocms-maps``.\n* Add ``'djangocms_maps'`` to your ``INSTALLED_APPS`` setting.\n* Run ``manage.py migrate djangocms_maps``.\n\nConfiguration\n=============\n\n``MAPS_PROVIDERS = [ ('', ''), ... ]``\n------------------------------------------------\nOptional. Allows you to specify the providers you want to offer, their\ndisplay labels and sort order in the user interface. Put a provider on top\nof the list to make it the default. **Default:**\n\n.. code-block:: python\n\n MAPS_PROVIDERS = [\n ('mapbox', _('Mapbox OSM (API key required)')),\n ('bingmaps', _('Bing Maps (API key required)')),\n ('googlemaps', _('Google Maps (API key required)')),\n ('here', _('HERE WeGo (API key required)')),\n ('viamichelin', _('ViaMichelin (API key required)')),\n ]\n\n``MAPS_BINGMAPS_API_KEY = ''``\n-----------------------------------\n`API key for Bing Maps`_ (required for using Bing Maps).\n\n``MAPS_GOOGLEMAPS_API_KEY = ''``\n-------------------------------------\n`API key for Google Maps`_ (required for using Google Maps).\n\n``MAPS_HERE_API_KEY = {'app_id': '', 'app_code': ''}``\n----------------------------------------------------------------\n`APP_ID and APP_CODE for HERE WeGo`_ (required for using HERE maps).\n\n``MAPS_MAPBOX_API_KEY = ''``\n---------------------------------\n`Access token for Mapbox`_ (required for using OSM maps with Mapbox tile layers).\n\n``MAPS_VIAMICHELIN_API_KEY = ''``\n--------------------------------------\n`API key for ViaMichelin`_ (required for using ViaMichelin maps).\n\nExamples\n========\n\n:Organice Demo:\n https://demo.organice.io/about/directions/\n\n Your maps plugin playground! Allows you to directly edit and view (albeit\n not to publish) changes on the maps plugin after authenticating.\n\nTranslations\n============\n\nIf you want to help translate the plugin please do it on `transifex`_.\n\nDeveloper Resources\n===================\n\n- Bing:\n - `Dev Center `__\n - `docs overview `__\n - `API docs `__\n - `examples `__\n- Google:\n - `API docs `__\n- HERE:\n - `API docs `__\n - `examples `__\n- Mapbox.js / Leaflet.js:\n - `API docs `__\n - `examples `__\n - `Leaflet API docs `__\n- ViaMichelin:\n - `API docs `__\n\n\n.. |latest-version| image:: https://img.shields.io/pypi/v/djangocms-maps.svg\n :alt: Latest version on PyPI\n :target: https://pypi.python.org/pypi/djangocms-maps\n.. |build-status| image:: https://img.shields.io/travis/Organice/djangocms-maps/master.svg\n :alt: Build status\n :target: https://travis-ci.org/Organice/djangocms-maps\n.. |health| image:: https://img.shields.io/codacy/grade/4ffaf0c75cff489682f4184676785e03/master.svg\n :target: https://www.codacy.com/app/Organice/djangocms-maps\n :alt: Code health\n.. |python-support| image:: https://img.shields.io/pypi/pyversions/djangocms-maps.svg\n :target: https://pypi.python.org/pypi/djangocms-maps\n :alt: Python versions\n.. |license| image:: https://img.shields.io/pypi/l/djangocms-maps.svg\n :alt: Software license\n :target: https://github.com/Organice/djangocms-maps/blob/master/LICENSE.txt\n.. |gitter| image:: https://badges.gitter.im/Organice/djangocms-maps.svg\n :alt: Gitter chat room\n :target: https://gitter.im/Organice/chat\n\n.. _Leaflet.js: http://leafletjs.com/\n.. _django CMS: https://github.com/divio/django-cms\n.. _virtualenv: https://virtualenv.pypa.io/en/stable/\n.. _API key for Bing Maps: https://msdn.microsoft.com/en-us/library/mt712556.aspx\n.. _API key for Google Maps:\n https://developers.google.com/maps/documentation/javascript/get-api-key\n.. _APP_ID and APP_CODE for HERE WeGo:\n https://developer.here.com/javascript-apis/documentation/v3/maps/common/credentials.html\n.. _Access token for Mapbox: https://www.mapbox.com/help/create-api-access-token/\n.. _API key for ViaMichelin:\n http://business-solutions.travel.michelin.com/contact-us/open-a-free-api-test-account.html\n.. _transifex: https://www.transifex.com/divio/djangocms-maps/\n\nCHANGELOG\n=========\n\n0.11.0 (2019-05-08)\n-------------------\n\n- Add aldryn_config.py to make plugin visible on Divio marketplace\n- Reformat code (inital migrations, models, forms, templatetags)\n\n0.10.0 (2019-01-30)\n-------------------\n\n- Convert float to string before evaluating (thanks @mireq)\n\n0.9.0 (2019-01-12)\n------------------\n\n- Don't show map title when it's blank (thanks @adrien-delhorme)\n\n0.8.0 (2018-03-04)\n------------------\n\n- Fix float rounding error for map coordinates on German sites (which use\n a colon instead of a period)\n- Configure HERE WeGo to use HTTPS by default\n\n0.7.0 (2016-09-14)\n------------------\n\n- Implement ViaMichelin provider\n\n0.6.0 (2016-09-02)\n------------------\n\n- Allow to display or hide layers control and scale bar\n- Implement HERE WeGo provider\n- Bugfix: Allow keyboard navigation (Mapbox)\n- Run static code analysis for all supported Python versions\n- Implement Bing Maps provider\n\n0.5.0 (2016-09-01)\n------------------\n\n- Fork ``djangocms-googlemap`` plugin, remove legacy burden\n- Refactor template structure for multi-provider support\n- Remove routing options from plugin UI (plan: re-implement on the map)\n- Reorganice plugin UI to avoid excessive scrolling\n- Add settings (API keys) for Google Maps and all future providers\n- Implement Mapbox provider\n- Add stubs for Bing, HERE, ViaMichelin\n\nbefore 0.5.0\n------------\n\n- See change log of Divio's djangocms-googlemap_.\n\n.. _djangocms-googlemap: https://github.com/divio/djangocms-googlemap/blob/master/CHANGELOG.rst\n\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Organice/djangocms-maps", "keywords": "", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "djangocms-maps", "package_url": "https://pypi.org/project/djangocms-maps/", "platform": "OS Independent", "project_url": "https://pypi.org/project/djangocms-maps/", "project_urls": { "Homepage": "https://github.com/Organice/djangocms-maps" }, "release_url": "https://pypi.org/project/djangocms-maps/0.11.0/", "requires_dist": null, "requires_python": "", "summary": "Universal maps plugin for django CMS", "version": "0.11.0" }, "last_serial": 5243983, "releases": { "0.1.0": [], "0.10.0": [ { "comment_text": "", "digests": { "md5": "78bb13a3ba9d1f8f2e65a2859adb2abe", "sha256": "7daab16b83b2acd1c47c139c8a30e840f4c55d981c5dcf3c4fbdae52e88fe38c" }, "downloads": -1, "filename": "djangocms_maps-0.10.0-py2-none-any.whl", "has_sig": false, "md5_digest": "78bb13a3ba9d1f8f2e65a2859adb2abe", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 216380, "upload_time": "2019-01-30T20:43:05", "url": "https://files.pythonhosted.org/packages/a3/aa/271729ecc0c75925619e50349e81d7ffa28ef3580783c2a089482b6eea49/djangocms_maps-0.10.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "75283236f20213ef7dcea16099fa1b6c", "sha256": "1ac405f6477e75c782bff0e545cb97e0c120a597ae9b6bdae53c57b67b34c646" }, "downloads": -1, "filename": "djangocms_maps-0.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "75283236f20213ef7dcea16099fa1b6c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 216380, "upload_time": "2019-01-30T20:43:00", "url": "https://files.pythonhosted.org/packages/57/9d/8b42e0f43cdeff65a5c397be9abeb4598e9c20d3ccf92f578b5ccac4020b/djangocms_maps-0.10.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9270335db94d07f0e2495b917a2b5529", "sha256": "f294311322d6e4e74feae246cfdf5371f0a9d168b91353ad398a3f4f1baa14e4" }, "downloads": -1, "filename": "djangocms-maps-0.10.0.tar.gz", "has_sig": false, "md5_digest": "9270335db94d07f0e2495b917a2b5529", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59516, "upload_time": "2019-01-30T20:43:02", "url": "https://files.pythonhosted.org/packages/f1/c3/f1e70d032e9c3b1be526f17b612a979be7dffc9c07a3aa60124fd19e2a6d/djangocms-maps-0.10.0.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "780266ccfceb4e6688b200558c5d5f87", "sha256": "a942292b7171f10cf04b3502445deb7265ba162f902580aa23d29120b1726a3a" }, "downloads": -1, "filename": "djangocms_maps-0.11.0-py2-none-any.whl", "has_sig": false, "md5_digest": "780266ccfceb4e6688b200558c5d5f87", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 216722, "upload_time": "2019-05-08T18:07:50", "url": "https://files.pythonhosted.org/packages/06/75/edfd065a68ce2b3442a8b03c80efec8ebd571e511d32a7b3927b3814de97/djangocms_maps-0.11.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "87ca00142a9c72bf62377c296b9500a7", "sha256": "62b4cc384502851e0b1a1f7b771d8ad3e562183373f8b37a0a549e818b2b9132" }, "downloads": -1, "filename": "djangocms_maps-0.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "87ca00142a9c72bf62377c296b9500a7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 216721, "upload_time": "2019-05-08T18:07:57", "url": "https://files.pythonhosted.org/packages/a1/59/3c9900ed288b564e8f7aa5ac2fa289d63b563b69a19524348d003feadec6/djangocms_maps-0.11.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1bf11a303fddc850449c65b177cccf48", "sha256": "32051b969d7bab3edc813b8796ad9c913fcb1d3b62aa8a216dd4d45ec1c373ec" }, "downloads": -1, "filename": "djangocms-maps-0.11.0.tar.gz", "has_sig": false, "md5_digest": "1bf11a303fddc850449c65b177cccf48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57973, "upload_time": "2019-05-08T18:07:51", "url": "https://files.pythonhosted.org/packages/be/6d/da59706278fe9c3a754a1a5ab5925150bc2e4a2fbd5c0f45c3e910b559b1/djangocms-maps-0.11.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "759569be766ed57f1522b834dd1bf7b8", "sha256": "ae57697bd55a537171e76ef37b0ba957bb7e0547d8ab6ac3d4d777b9d7c0ac09" }, "downloads": -1, "filename": "djangocms-maps-0.5.0.tar.gz", "has_sig": false, "md5_digest": "759569be766ed57f1522b834dd1bf7b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54588, "upload_time": "2016-09-01T12:06:50", "url": "https://files.pythonhosted.org/packages/24/be/23e14c976eab1678292238b09d434ab071696a20c30640541a5fcb3d515c/djangocms-maps-0.5.0.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "5100d3e3b9677361b0f18fbdb84b13d2", "sha256": "c311e5d54cb5d3ace46489010c60790a3a94fe3547204e55eceb85728ed10f5b" }, "downloads": -1, "filename": "djangocms-maps-0.6.0.tar.gz", "has_sig": false, "md5_digest": "5100d3e3b9677361b0f18fbdb84b13d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56938, "upload_time": "2016-09-02T21:10:39", "url": "https://files.pythonhosted.org/packages/aa/64/7e762f49b017a90c1ce20cfb3094a5b13b964bbe7f6282745e86252c6f25/djangocms-maps-0.6.0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "8c0e5f8eb4a024438eb57303463bb1f8", "sha256": "39c7056db515adfae20d3a72e6e508d9ea1319b55b441fd0353b0e2b590ad21d" }, "downloads": -1, "filename": "djangocms-maps-0.7.0.tar.gz", "has_sig": false, "md5_digest": "8c0e5f8eb4a024438eb57303463bb1f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58120, "upload_time": "2016-09-14T13:22:06", "url": "https://files.pythonhosted.org/packages/7d/0d/11399f1d5cddf0d5c418b64d8fbc33f4d38936e8a4a84edf589679b4716b/djangocms-maps-0.7.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "3e055a0f62d1d5a546823e9afd9bc65e", "sha256": "d35de4ea2b8cf5d0ba69dc25fd4947668b7664b9cb4c3d3a984143b68bd201f2" }, "downloads": -1, "filename": "djangocms-maps-0.8.0.tar.gz", "has_sig": false, "md5_digest": "3e055a0f62d1d5a546823e9afd9bc65e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60342, "upload_time": "2018-03-04T09:21:16", "url": "https://files.pythonhosted.org/packages/7f/3d/69e76453e9e2b73e86056068c9f85beb090c935a98810e4934cd62d7ff29/djangocms-maps-0.8.0.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "4e874e6b1d6f3ccf502eeaada5a592a2", "sha256": "5783ee4aa73a498074b82d0c6f61b4abf18b0a2bb59eb4459dc9b45697739edb" }, "downloads": -1, "filename": "djangocms_maps-0.9.0-py2-none-any.whl", "has_sig": false, "md5_digest": "4e874e6b1d6f3ccf502eeaada5a592a2", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 216230, "upload_time": "2019-01-12T13:02:34", "url": "https://files.pythonhosted.org/packages/c7/53/a4248ddf9efea4d8aea1d63a5d90fcd29f252979d49ce42af9ac72a7bf71/djangocms_maps-0.9.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "29b9c0f6922d4cae4f61dff0737a986d", "sha256": "7f51e955663b8a033be94e8d6b4da8742fef6f900d44ac284fe440defb594c8f" }, "downloads": -1, "filename": "djangocms_maps-0.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "29b9c0f6922d4cae4f61dff0737a986d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 216231, "upload_time": "2019-01-12T13:02:50", "url": "https://files.pythonhosted.org/packages/3d/46/8865c6a22edfc75f07aae3bd65f1797198ae29498764d77a52ade120de98/djangocms_maps-0.9.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e0ef3f53b914ecccf082fae7ff6de4f5", "sha256": "9e32a375826f0dfe7fc1a7872c56a382e394bd0b5424e0e219657427fbf0efd7" }, "downloads": -1, "filename": "djangocms-maps-0.9.0.tar.gz", "has_sig": false, "md5_digest": "e0ef3f53b914ecccf082fae7ff6de4f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59457, "upload_time": "2019-01-12T13:02:36", "url": "https://files.pythonhosted.org/packages/37/4d/88cd5a46def583f30cdba60e05cab1724a64537d1d2518f5d74eb89cf104/djangocms-maps-0.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "780266ccfceb4e6688b200558c5d5f87", "sha256": "a942292b7171f10cf04b3502445deb7265ba162f902580aa23d29120b1726a3a" }, "downloads": -1, "filename": "djangocms_maps-0.11.0-py2-none-any.whl", "has_sig": false, "md5_digest": "780266ccfceb4e6688b200558c5d5f87", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 216722, "upload_time": "2019-05-08T18:07:50", "url": "https://files.pythonhosted.org/packages/06/75/edfd065a68ce2b3442a8b03c80efec8ebd571e511d32a7b3927b3814de97/djangocms_maps-0.11.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "87ca00142a9c72bf62377c296b9500a7", "sha256": "62b4cc384502851e0b1a1f7b771d8ad3e562183373f8b37a0a549e818b2b9132" }, "downloads": -1, "filename": "djangocms_maps-0.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "87ca00142a9c72bf62377c296b9500a7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 216721, "upload_time": "2019-05-08T18:07:57", "url": "https://files.pythonhosted.org/packages/a1/59/3c9900ed288b564e8f7aa5ac2fa289d63b563b69a19524348d003feadec6/djangocms_maps-0.11.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1bf11a303fddc850449c65b177cccf48", "sha256": "32051b969d7bab3edc813b8796ad9c913fcb1d3b62aa8a216dd4d45ec1c373ec" }, "downloads": -1, "filename": "djangocms-maps-0.11.0.tar.gz", "has_sig": false, "md5_digest": "1bf11a303fddc850449c65b177cccf48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57973, "upload_time": "2019-05-08T18:07:51", "url": "https://files.pythonhosted.org/packages/be/6d/da59706278fe9c3a754a1a5ab5925150bc2e4a2fbd5c0f45c3e910b559b1/djangocms-maps-0.11.0.tar.gz" } ] }