Metadata-Version: 2.1
Name: simplestmaps
Version: 1.6.0
Summary: Super simple on-liner maps in python.
Home-page: http://github.com/fisadev/simplestmaps
Author: Juan Pedro Fisanotti
Author-email: fisadev@gmail.com
License: MIT
Description: # Simplest Maps
        
        Super simple on-liner maps in python.
        
        # Installation
        
        `pip3 install simplestmaps`
        
        # Usage
        
        This lib aims to be super simple to use. For instance, to draw a markers and an area, you could do something like this:
        
        ```python
        from simplestmaps import draw_map, area, marker
        
        draw_map(
            marker(-31.2526, -61.4917, popup="my hometown"),
            area([(-31.2741, -61.5105), (-31.2872, -61.5137), (-31.2895, -61.5003), (-31.2764, -61.4973)], color="green", popup="our airfield"),
        )
        ```
        
        ![example map](./readme_example1.png)
        
        It can even do more advanced stuff, like plotting the contents of a geojson file (points, areas, lines):
        
        ```python
        from simplestmaps import draw_map, geojson
        
        draw_map(
            geojson("./readme_example.geojson"),
        )
        ```
        
        ![example map](./readme_example2.png)
        
        SimplestMaps can plot markers, dots, labels (text), custom html, lines, areas and geojsons, and all of that can be combined in every map.
        
        And every element plotted into the map is also customizable (colors, fonts, sizes, popups, etc).
        
        # More demos and docs
        
        Here are a good set of examples that showcase (and document) all of the supported features:
        
        ## [Take a look at everything that's possible with so little code!](https://nbviewer.org/github/fisadev/simplestmaps/blob/e26f7cbe1eb195714f87e3804e766e302b7e51b5/demo_and_docs.ipynb)
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
