{"id":14065843,"url":"https://github.com/gmplot/gmplot","last_synced_at":"2025-07-29T21:33:58.960Z","repository":{"id":23380199,"uuid":"26741731","full_name":"gmplot/gmplot","owner":"gmplot","description":"Plot data on Google Maps, the easy way.","archived":false,"fork":false,"pushed_at":"2021-10-14T20:35:53.000Z","size":27003,"stargazers_count":826,"open_issues_count":27,"forks_count":259,"subscribers_count":39,"default_branch":"master","last_synced_at":"2024-09-07T06:47:30.672Z","etag":null,"topics":["google-maps","python","visualization"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gmplot.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-11-17T05:36:18.000Z","updated_at":"2024-09-02T16:02:05.000Z","dependencies_parsed_at":"2022-08-02T23:15:25.954Z","dependency_job_id":null,"html_url":"https://github.com/gmplot/gmplot","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gmplot%2Fgmplot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gmplot%2Fgmplot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gmplot%2Fgmplot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gmplot%2Fgmplot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gmplot","download_url":"https://codeload.github.com/gmplot/gmplot/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228052623,"owners_count":17862104,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["google-maps","python","visualization"],"created_at":"2024-08-13T07:04:45.936Z","updated_at":"2024-12-04T05:31:06.252Z","avatar_url":"https://github.com/gmplot.png","language":"Python","readme":"gmplot |PyVersions|_\n====================\n.. |PyVersions| image:: https://img.shields.io/pypi/pyversions/gmplot?style=flat-square\n.. _PyVersions: https://www.python.org/\n\nA matplotlib-like interface to render all the data you'd like on top of Google Maps.\n\nSeveral plotting methods make creating exploratory map views effortless.\n\nTo install: ``pip install gmplot``\n\nDocumentation (with examples): `API Reference \u003chttps://github.com/gmplot/gmplot/wiki\u003e`_\n\nCrash course\n------------\n\n.. code:: python\n\n    import gmplot\n\n    # Create the map plotter:\n    apikey = '' # (your API key here)\n    gmap = gmplot.GoogleMapPlotter(37.766956, -122.448481, 14, apikey=apikey)\n\n    # Mark a hidden gem:\n    gmap.marker(37.770776, -122.461689, color='cornflowerblue')\n\n    # Highlight some attractions:\n    attractions_lats, attractions_lngs = zip(*[\n        (37.769901, -122.498331),\n        (37.768645, -122.475328),\n        (37.771478, -122.468677),\n        (37.769867, -122.466102),\n        (37.767187, -122.467496),\n        (37.770104, -122.470436)\n    ])\n    gmap.scatter(attractions_lats, attractions_lngs, color='#3B0B39', size=40, marker=False)\n\n    # Outline the Golden Gate Park:\n    golden_gate_park = zip(*[\n        (37.771269, -122.511015),\n        (37.773495, -122.464830),\n        (37.774797, -122.454538),\n        (37.771988, -122.454018),\n        (37.773646, -122.440979),\n        (37.772742, -122.440797),\n        (37.771096, -122.453889),\n        (37.768669, -122.453518),\n        (37.766227, -122.460213),\n        (37.764028, -122.510347)\n    ])\n    gmap.polygon(*golden_gate_park, color='cornflowerblue', edge_width=10)\n\n    # Draw the map to an HTML file:\n    gmap.draw('map.html')\n\n.. image:: https://raw.githubusercontent.com/gmplot/gmplot/master/docs/images/README_Example.png\n\n----\n\nInspired by Yifei Jiang's (jiangyifei@gmail.com) `pygmaps \u003chttp://code.google.com/p/pygmaps/\u003e`_ module.\n","funding_links":[],"categories":["Python"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgmplot%2Fgmplot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgmplot%2Fgmplot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgmplot%2Fgmplot/lists"}