{"id":20118527,"url":"https://github.com/gburgose/jquery-gmaps","last_synced_at":"2025-05-06T14:31:40.511Z","repository":{"id":57282140,"uuid":"92701929","full_name":"gburgose/jquery-gmaps","owner":"gburgose","description":null,"archived":false,"fork":false,"pushed_at":"2018-07-20T16:04:49.000Z","size":136,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-10-14T04:17:07.364Z","etag":null,"topics":["googlemaps","jquery","maps","markers"],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gburgose.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-05-29T02:57:19.000Z","updated_at":"2018-08-03T22:01:05.000Z","dependencies_parsed_at":"2022-09-18T21:04:14.491Z","dependency_job_id":null,"html_url":"https://github.com/gburgose/jquery-gmaps","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gburgose%2Fjquery-gmaps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gburgose%2Fjquery-gmaps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gburgose%2Fjquery-gmaps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gburgose%2Fjquery-gmaps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gburgose","download_url":"https://codeload.github.com/gburgose/jquery-gmaps/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224509440,"owners_count":17323077,"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":["googlemaps","jquery","maps","markers"],"created_at":"2024-11-13T19:11:30.849Z","updated_at":"2024-11-13T19:11:31.456Z","avatar_url":"https://github.com/gburgose.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jQuery Google Maps\n\n[![npm version](https://badge.fury.io/js/jquery-gmaps.svg)](https://badge.fury.io/js/jquery-gmaps)\n\n### Test on\n\nLaravel Mix: 0.12.1\n\n### What is jquery gMaps?\n\njQuery gMaps is intended to reduce the time of frontend development. You can create maps customized with html attributes and some lines of javascript.\n\n### Installation\n\n#### npm\n\n```\nnpm install jquery-gmaps --save-dev\n```\n\n#### Webpack\n\n```js\nrequire('jquery-gmaps');\n```\n\n#### jQuery\n\n```js\n$(document).ready(function(){\n  $('#map').gmaps();\n});\n```\n\n#### HTML\n\n```html\n    \u003cdiv data-key=\"[YOUR API KEY]\"\n      data-zoom=\"4\"\n      role=\"map\"\n      class=\"gmaps\"\u003e\n        \n        \u003cdiv\n          data-id=\"chile\"\n          data-lat=\"-35.675147\"\n          data-lng=\"-71.542969\" \n          class=\"marker\"\u003e\n          \u003cdiv class=\"marker-card\"\u003e\n            \u003ch2\u003eChile\u003c/h2\u003e\n          \u003c/div\u003e\n        \u003c/div\u003e\n\n        \u003cdiv\n          data-id=\"argentina\"\n          data-lat=\"-38.416097\"\n          data-lng=\"-63.616672\" \n          class=\"marker\"\u003e\n          \u003cdiv class=\"marker-card\"\u003e\n            \u003ch2\u003eArgentina\u003c/h2\u003e\n          \u003c/div\u003e\n        \u003c/div\u003e\n\n        \u003cdiv\n          data-id=\"brasil\"\n          data-lat=\"-14.235004\"\n          data-lng=\"-51.92528\" \n          class=\"marker\"\u003e\n          \u003cdiv class=\"marker-card\"\u003e\n            \u003ch2\u003eBrasil\u003c/h2\u003e\n          \u003c/div\u003e\n        \u003c/div\u003e\n\n        \u003cdiv\n          data-id=\"peru\"\n          data-lat=\"-9.189967\"\n          data-lng=\"-75.015152\" \n          class=\"marker\"\u003e\n          \u003cdiv class=\"marker-card\"\u003e\n            \u003ch2\u003ePerú\u003c/h2\u003e\n          \u003c/div\u003e\n        \u003c/div\u003e\n\n    \u003c/div\u003e\n```\n\n### Map settings\n\n| Attribute  | Type | Values | Default | Explanation |\n|-|-|-|-|-|\n| data-key | String | -- | -- | You can get your api key [here](https://developers.google.com/maps/documentation/javascript/get-api-key).  |\n| data-zoom | Integer | -- | 4 | Sets the initial map zoom |\n| data-clustering | Boolean | true or false | false | Group the map markers |\n\n### Map controls\n\n| Attribute  | Type | Values | Default | Explanation |\n|-|-|-|-|-|\n| data-control-zoom | Boolean | true or false | false | -- |\n| data-control-type | Boolean | true or false | false | -- |\n| data-control-scale | Boolean | true or false | false | -- |\n| data-control-streetview | Boolean | true or false | false | -- |\n| data-control-rotate | Boolean | true or false | false | -- |\n| data-control-fullscreen | Boolean | true or false | false | -- |\n\n### Map events\n\n| Attribute  | Type | Values | Default | Explanation |\n|-|-|-|-|-|\n| data-event-draggable | Boolean | true or false | true | -- |\n| data-event-doubleclick | Boolean | true or false | true | -- |\n| data-event-mousewheel | Boolean | true or false | false | -- |\n\nTo be continued...\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgburgose%2Fjquery-gmaps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgburgose%2Fjquery-gmaps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgburgose%2Fjquery-gmaps/lists"}