Metadata-Version: 1.1
Name: qgmap
Version: 0.1
Summary: Google Map widget for PySyde/PyQt4
Home-page: https://github.com/vokimon/python-qgmap
Author: David Garcia Garzon
Author-email: voki@canvoki.net
License: GNU General Public License v3 or later (GPLv3+)
Description: python-qgmap
        ============
        
        Qt Google Map widget for PySide/PyQt4
        
        Features:
        ---------
        
        -  Specify locations either by latitude, longitude pairs or street
           addresses by means of GeoCoding
        -  Programatically centering, zooming and manipulate markers
        -  Flexible marker properties (ie. draggable, icon, title...)
        -  Emits signals on user actions: dragged markers, pans or zooms
        -  Easy to extend, thanks to the painless python-qt-javascript interface
        
        Installation
        ------------
        
        By using pip:
        
        ::
        
            $ pip3 install qgmap
        
        From source:
        
        ::
        
            python3 setup.py --install
        
        Usage
        -----
        
        Two main classes are provided:
        
        -  qgmap.GeoCoder: Retrieves geo-coordinates (latitude, longitude) from
           street addresses
        -  qgmap.QGoogleMap: A WebView widget containing a GoogleMap, with some
           convenience accessors to manage center, zoom, markers...
        
        See the main example code at qgmap-example.py
        
        Using it with PyQt4
        -------------------
        
        By default the classes use PySide, but the code works for PyQt4 if you
        set to False the usePySide module variable by hand.
        
        Any suggestion to make this less hacky is welcome.
        
        Acknoledgements
        ---------------
        
        This Python code has been inspired in Henrik Hartz's C++ example code:
        
        ::
        
            https://blog.qt.digia.com/blog/2008/07/03/putting-qtwebkit-to-use-with-google-maps/
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Environment :: X11 Applications :: Qt
Classifier: Environment :: Win32 (MS Windows)
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
