{ "info": { "author": "Florian Schulze", "author_email": "fschulze@jarn.com", "bugtrack_url": null, "classifiers": [ "Framework :: Plone", "Framework :: Plone :: 3.3", "Framework :: Plone :: 4.0", "Framework :: Plone :: 4.1", "Framework :: Plone :: 4.2", "Framework :: Plone :: 4.3", "Framework :: Zope2", "License :: OSI Approved :: GNU General Public License (GPL)", "Programming Language :: Python" ], "description": "A Google Maps solution for Plone\n--------------------------------\n\nThe main purpose of this product is to provide a very simple to use\nGoogle Maps integration for Plone. The following goals were set for\ndevelopment:\n\n- Ease of use\n - Add locations to a folder\n - Set the view of the folder to Map\n - It figures out how to center and zoom the map automatically\n- Flexibility for enhancement by using the Zope 3 component architecture\n- Sane fallbacks when Javascript is not available\n- Clean separation of javascript, templates and logic\n- Works on Topics\n\nInstallation\n------------\n\nMaps shows up in the \"Add-ons\" configuration panel.\n\nImplementing custom content with map field\n------------------------------------------\n\nIf you want to add location foeld to your custom content type, you should\nimplement the following steps:\n\nAdd GeoLocation field::\n\n from Products.Maps.field import LocationWidget, LocationField\n from Products.Maps.interfaces import IMapEnabled, ILocation\n\n MyContentSchema = ...\n\n LocationField('geolocation',\n required=False,\n searchable=False,\n validators=('isGeoLocation',),\n widget = LocationWidget(label = u'Event location'),\n ),\n ... \n\nUpdate your class definition::\n\n class MyContent(ATCTContent):\n \"\"\" my content description \"\"\"\n implements(IMyContent, IMapEnabled, ILocation)\n \n ... \n\n def getMarkerIcon(self):\n \"\"\" Can be implemented as select field. See Maps.Location content \"\"\"\n return \"Red Marker\"\n\nAdd following snippet to custom content view/template::\n\n
\n
\n
\n
\n\n\nDependencies\n------------\n\n- Plone 3.3 / 4.x\n\n\nCredits\n-------\n\nCreated by Florian Schulze for Jarn AS in 2007.\n\nParts are based on:\n\n- \"ATGoogleMaps\":http://takanory.net/plone/develop/atgooglemaps\n- \"qPloneGoogleMaps\":http://projects.quintagroup.com/products/wiki/qPloneGoogleMaps\n- \"geolocation\":http://svn.quintagroup.com/products/geolocation/\n\nDevelopment originally sponsored by\n-----------------------------------\n\nThe \"Student Services of Bergen, Norway\":http://sib.no\n\n\"University of Oxford\":http://medsci.ox.ac.uk (Medical Sciences Division)\n\nContributors for version 3.0\n----------------------------\n\nMaurizio Lupo @sithmel - maurizio.lupo@redomino.com\nLuca Fabbri @keul - luca@keul.it\n\n\nChangelog\n=========\n\n3.3 (2013-04-05)\n----------------\n\n- Store map objects in window.activeMaps to allow end-develops access\n [StevenLooman]\n- added title in popup window [giacomos] \n\n\n3.2 (2013-03-14)\n----------------\n\n- fix on location widget when used as archetype field [sithmel]\n- fix on save maps layout buttons (Plone3 only) [sithmel]\n\n\n3.0 (2013-01-25)\n----------------\n\n- Completely refactored js code using Jquery [sithmel]\n- Updated to Google API v.3 (reverse geocoding, streetview ecc.) [sithmel]\n- Added autocompletion for places [sithmel]\n- Fixed Layer feature (based on keywords) [sithmel]\n- added search to map view [sithmel]\n- Added Italian Translation [sithmel]\n- added new plone collection compatibility [sithmel]\n- new control panel [sithmel]\n- various bugfixes and compatibility tests [keul]\n\n2.1.2 - Unreleased\n------------------\n\n- Update for Plone 4.1: include Products.CMFCore to define missing\n permissions. Fix undefined name showContents in default view. [thefunny42]\n\n- Add \"Add permission\" for Site Administrator too. [thefunny42]\n\n- Add controlpanel option to turn off displaying full item contents in pop-up.\n (http://plone.org/products/maps/issues/34)\n [khink]\n\n2.1.1 - 2011-05-13\n------------------\n\n- Force validator registration before use. Avoids spurious warning.\n [ggozad]\n\n- Kicked out qPloneGoogleMaps and Products.geolocation\n [ggozad]\n\n- Fixed broken TestCase.\n [ggozad]\n\n- Updated control panel actions for Plone 4.\n [ggozad]\n\n- Update ILocation interface. Custom content type must implement getMarkerIcon\n method to successfully support LocationMarker adapter.\n [naro]\n\n- Added notes about implementation geolocation field to custom content type.\n [naro]\n\n- Allow maps_map to be used as view template without being the default view\n (http://plone.org/products/maps/issues/32)\n [khink]\n\n- Replace __init__ profile initialization with xml file GS profile setup, so\n we can add Products.Maps as a dependency in another product's Generic Setup\n profile.\n [khink]\n\n- Added Dutch translation\n [kcleong]\n\n2.1.0 - 2010-09-19\n------------------\n\n- Update documentation to require Plone 4.x.\n [hannosch]\n\n- Update license to GPL version 2 only.\n [hannosch]\n\n- Removed IndexIterator since it was removed in Plone 4.0.\n [pbauer]\n\n- Added support missing plone domain on i18n directory. Added Spanish\n translation. Updated full support for i18n and generate new template.\n [macagua]\n\n- Improve map initialization when the location field is displayed in an other\n schemata. Merged from branches/map-in-another-schemata.\n Notes: Width and height must be define in the theme's styles, if you put the\n field in an other schemata::\n\n div.googleMapEdit {\n width:756px; /* must be in pixels */\n height:455px; /* must be in pixels */\n padding-bottom:30px;\n }\n\n [sylvainb, toutpt]\n\n2.0.3 - 2010-05-07\n------------------\n\n- Added missing i18n_domain to the configure.zcml.\n [hannosch]\n\n- Cook javascript resources after control panel submissions.\n [silviot]\n\n2.0.2 - 2010-02-10\n------------------\n\n- Added an add permission for GeoLocations to support fine grained control of\n where the content type can be added.\n [rossp]\n\n2.0.1 - 2010-01-19\n------------------\n\n- Updated LocationFieldValidator to be compatible with both Plone 3 and 4.\n [hannosch]\n\n2.0 - 2008-09-17\n----------------\n\n- Add a metadata.xml to the GenericSetup profile.\n [wichert]\n\n- Refactored to make it easier to use Maps in custom content types. If you\n write a content type and use a field named 'geolocation', then you can use\n default implementations of adapters now instead of writing three on your own.\n [fschulze]\n\n- Moved to common egg file layout. This means there will be no more\n tarball releases, because the docs are outside of the Products folder.\n [fschulze]\n\n- Converted HISTORY.txt and README.txt to reStructureText.\n [fschulze]\n\n- Added a simple buildout configuration to the package, to be able to\n develop and test it on its own.\n [hannosch]\n\n1.2 - July 3, 2008\n------------------\n\n- Added greek translation.\n [ggozad]\n\n- Updated templates for Plone 3.0.\n [fschulze]\n\n- Dropped compatibility with Plone 2.5.\n [fschulze]\n\n1.1 - September 05, 2007\n------------------------\n\n- Fixed the logic when to show layers.\n [fschulze]\n\n- Fixed viewing of maps if the workflow state was 'private'. There is a\n new interface and view which only has the 'enabled' attribute and which\n is accessible without restriction. This is now used as the condition in\n portal_javascripts.\n [fschulze]\n\n- The coordinates field now uses a tuple with two floats everywhere. The\n widget for it now uses two input fields.\n [fschulze]\n\n- Made LinguaPlone aware.\n [fschulze]\n\n- Added custom view for locations. The map is smaller at the upper right\n and the rich text is shown besides it.\n [fschulze]\n\n1.1rc1 - May 17, 2007\n---------------------\n\n- Added configlet for Plone 3.0.\n [fschulze]\n\n- Fixed scrolling of map when clicking on pin. This only happend when\n there were no layers.\n [fschulze]\n\n- Fixed functionality of layer checkboxes for IE6/7.\n [fschulze]\n\n- Fixed key lookup when the URL has a trailing slash.\n [fschulze]\n\n- Added fallback to Google AJAX Search if the Google Maps geocoding did\n not return any results. This allows you to search for cities i.e. the\n UK and China.\n [fschulze]\n\n1.0 - May 03, 2007\n------------------\n\n- Changed the markup. All markers are in one definition list instead of\n one marker in one list. A dt with class=\"title\" marks the beginning of\n a new marker.\n [fschulze]\n\n- Added support for layers. The default is to take keywords as the name\n of the layer in which a marker is visible. Then you get a map control\n with checkboxes for each keyword and you can view/hide the markers with\n that.\n [fschulze]\n\n- Using GenericSetup for installation.\n [fschulze]\n\n- Added support for existing qPloneGoogleMaps markers.\n Added support of content with location from the geolocation product.\n [fschulze]\n\n- Added RichText field to Location objects.\n [fschulze]\n\n- Added support for tabbed info windows.\n [fschulze]\n\n\n0.5 - April 02, 2007\n--------------------\n\n- Initial public release.\n [fschulze]", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://plone.org/products/maps", "keywords": "Google Maps Zope Plone", "license": "GPL", "maintainer": null, "maintainer_email": null, "name": "Products.Maps", "package_url": "https://pypi.org/project/Products.Maps/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/Products.Maps/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://plone.org/products/maps" }, "release_url": "https://pypi.org/project/Products.Maps/3.3/", "requires_dist": null, "requires_python": null, "summary": "A simple, easy to use Plone integration with Google Maps", "version": "3.3" }, "last_serial": 1407765, "releases": { "1.2": [ { "comment_text": "", "digests": { "md5": "5d31515e530b646ec178c2976ff41956", "sha256": "31cbc57f6ece9267dc80d89a2b1c8f074e714e51e02b5b03bfca91b21b55f75b" }, "downloads": -1, "filename": "Products.Maps-1.2.tar.gz", "has_sig": true, "md5_digest": "5d31515e530b646ec178c2976ff41956", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38613, "upload_time": "2008-07-03T13:14:29", "url": "https://files.pythonhosted.org/packages/09/59/afe8da3c40d55817595b5ec08e5b7a6f6112ed434e626348c6e87920173a/Products.Maps-1.2.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "6d937865c43f8f78f5f14979dbb13516", "sha256": "8be0407c4fb433f2cc31058cc007a8730385cf09bda3579c5ef68c482eaf4811" }, "downloads": -1, "filename": "Products.Maps-2.0.tar.gz", "has_sig": true, "md5_digest": "6d937865c43f8f78f5f14979dbb13516", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42821, "upload_time": "2008-09-17T10:53:36", "url": "https://files.pythonhosted.org/packages/55/47/61cc736cab00d969b6de4fc91b5b4db4489943c991f26e3e1ece1cef014c/Products.Maps-2.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "66fadf30cd039c6ea9b12b05a836ad14", "sha256": "af5e6315059b49b25c754e079ce4f4245bdf9fa4bd22cf134e7b43c2fa9dc1f6" }, "downloads": -1, "filename": "Products.Maps-2.0.1.zip", "has_sig": false, "md5_digest": "66fadf30cd039c6ea9b12b05a836ad14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73211, "upload_time": "2010-01-19T14:53:06", "url": "https://files.pythonhosted.org/packages/b6/cc/079a0f72f479ef2fcbb3d5233db0d74a2fff0ef0c29f0b7bca4bc592044a/Products.Maps-2.0.1.zip" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "9406f6e436609ba7eeab1bcb8f68b58d", "sha256": "ab85d60109794fef5b9c5bf2124b3f501b7f1c077aa465d800de9619c5c7619d" }, "downloads": -1, "filename": "Products.Maps-2.0.2.zip", "has_sig": false, "md5_digest": "9406f6e436609ba7eeab1bcb8f68b58d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73537, "upload_time": "2010-02-10T22:07:55", "url": "https://files.pythonhosted.org/packages/43/ec/86b162c749114f7427e183050d3167a5d3347c9e38e8ea4ab9871b6abd70/Products.Maps-2.0.2.zip" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "e25e9e2ded59cf5c86776b77534ad361", "sha256": "ace05c84edde891f2873647fe6c00ecca618dec47ee16bae99298da1215e2d6c" }, "downloads": -1, "filename": "Products.Maps-2.0.3.zip", "has_sig": false, "md5_digest": "e25e9e2ded59cf5c86776b77534ad361", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75569, "upload_time": "2010-05-07T14:34:12", "url": "https://files.pythonhosted.org/packages/ff/e7/f8e51042e1d1ede586062905301aa8ecf85d137b9db83cf1d9ad861cd7a0/Products.Maps-2.0.3.zip" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "4b50d1e3b453790d731538c6582fcd81", "sha256": "6b81a2b0335657511aaa5d6c048e5af28f59222cbbbc4166ead1445ca1f708a2" }, "downloads": -1, "filename": "Products.Maps-2.1.0.zip", "has_sig": false, "md5_digest": "4b50d1e3b453790d731538c6582fcd81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90690, "upload_time": "2010-09-19T11:28:55", "url": "https://files.pythonhosted.org/packages/d4/af/d8d236d36ce3a20b81b692866431a828b8d81e8c381727ef72af7105fa9b/Products.Maps-2.1.0.zip" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "a254f759b46a4b786f11ab2bffcf56ed", "sha256": "4151c95c788918b650c04c5733b6283843010267fdd7fffa675311d99de493a2" }, "downloads": -1, "filename": "Products.Maps-2.1.1.zip", "has_sig": false, "md5_digest": "a254f759b46a4b786f11ab2bffcf56ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95470, "upload_time": "2011-05-13T13:18:29", "url": "https://files.pythonhosted.org/packages/08/b3/eecd1bbfc3d200ace3ef686979d38d0cb08ee252a6699ecf4d73017d6be8/Products.Maps-2.1.1.zip" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "811ab188baaa3a7a279ffa53fa020766", "sha256": "f4635b58bd1691449d047d56847b58cecaa4a794d003a26ac95982548a37695e" }, "downloads": -1, "filename": "Products.Maps-2.1.2.zip", "has_sig": false, "md5_digest": "811ab188baaa3a7a279ffa53fa020766", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96310, "upload_time": "2013-02-07T13:22:23", "url": "https://files.pythonhosted.org/packages/5e/8e/29636092a0816800ddfebace6c00b84a70e6e9bc22362d8514b1302d9c2c/Products.Maps-2.1.2.zip" } ], "3.0": [ { "comment_text": "", "digests": { "md5": "98f3b50d286694d6b406e677b5051067", "sha256": "65c91d347c80595d2183f2b626d7727c1265523ee56ddf50cba2d15e253c3a6c" }, "downloads": -1, "filename": "Products.Maps-3.0.zip", "has_sig": false, "md5_digest": "98f3b50d286694d6b406e677b5051067", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 111943, "upload_time": "2013-01-25T09:14:40", "url": "https://files.pythonhosted.org/packages/e8/45/8fb59379b52e21e37da56bf32a2fbae5c2d7c0ecbcce435f06cffe7f97a3/Products.Maps-3.0.zip" } ], "3.2": [ { "comment_text": "", "digests": { "md5": "3a17a128b12e12d23640675f86aa7c26", "sha256": "1ac8224834d56abfd09ae38b3df469f11e064f86b10fe33b13653ba036f0f64b" }, "downloads": -1, "filename": "Products.Maps-3.2.zip", "has_sig": false, "md5_digest": "3a17a128b12e12d23640675f86aa7c26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 112151, "upload_time": "2013-03-14T13:52:18", "url": "https://files.pythonhosted.org/packages/60/4f/9f80b0b0ff19ced832127aae1afc1cd256b5bbd9db7d3b0d6bc179827f2e/Products.Maps-3.2.zip" } ], "3.3": [ { "comment_text": "", "digests": { "md5": "c818583efc85b0bff6e0f6de57c805cf", "sha256": "e21a0fff419927326264849d2f8c22b3a1f2acd6dd9590936a43cff446e7a403" }, "downloads": -1, "filename": "Products.Maps-3.3.zip", "has_sig": false, "md5_digest": "c818583efc85b0bff6e0f6de57c805cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 112391, "upload_time": "2013-04-05T15:39:50", "url": "https://files.pythonhosted.org/packages/ec/7b/5a115daf74163039ae8848035f3a2bef8aa4762e6eac0f55d104b3038061/Products.Maps-3.3.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c818583efc85b0bff6e0f6de57c805cf", "sha256": "e21a0fff419927326264849d2f8c22b3a1f2acd6dd9590936a43cff446e7a403" }, "downloads": -1, "filename": "Products.Maps-3.3.zip", "has_sig": false, "md5_digest": "c818583efc85b0bff6e0f6de57c805cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 112391, "upload_time": "2013-04-05T15:39:50", "url": "https://files.pythonhosted.org/packages/ec/7b/5a115daf74163039ae8848035f3a2bef8aa4762e6eac0f55d104b3038061/Products.Maps-3.3.zip" } ] }