{"id":20879258,"url":"https://github.com/edsol/mingmaps-library","last_synced_at":"2026-04-22T11:34:42.188Z","repository":{"id":114420767,"uuid":"302629280","full_name":"Edsol/mingmaps-library","owner":"Edsol","description":"A very simple and quickly library to init, use and manipulate Google map, their markers,routes and infowindows.","archived":false,"fork":false,"pushed_at":"2025-09-11T07:02:07.000Z","size":433,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-29T08:19:26.040Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Edsol.png","metadata":{"files":{"readme":"README.md","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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-10-09T12:04:25.000Z","updated_at":"2025-09-11T07:02:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"e973566c-b3f3-43e2-8827-9363ebd1f1ab","html_url":"https://github.com/Edsol/mingmaps-library","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Edsol/mingmaps-library","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Edsol%2Fmingmaps-library","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Edsol%2Fmingmaps-library/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Edsol%2Fmingmaps-library/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Edsol%2Fmingmaps-library/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Edsol","download_url":"https://codeload.github.com/Edsol/mingmaps-library/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Edsol%2Fmingmaps-library/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32134484,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-22T08:34:57.708Z","status":"ssl_error","status_checked_at":"2026-04-22T08:34:55.583Z","response_time":58,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-11-18T07:15:44.564Z","updated_at":"2026-04-22T11:34:41.344Z","avatar_url":"https://github.com/Edsol.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mingmaps-library\n\nA very simple and quickly library to init, use and manipulate Google map, their markers,routes and infowindows.\n\n\n# How-to-use\n### Import script\n\n```html\n\u003cscript src=\"path_of_module/main.js\"\u003e\u003c/script\u003e\n```\n\n### Use it\n\n```html\n\u003cscript type=\"module\"\u003e\nimport * as Mingmaps from 'path_of_module/main.js';\n\u003c/script\u003e\n```\n\n# Example\n### Init map\n\n```javascript\nMingmaps.Map.initMap('map',{\n  center: {\n    lat: 41.4265774,\n    lng: 14.4789369\n  },\n  zoom: 6,\n  disableDefaultUI: true,\n  mapTypeId: 'hybrid'\n});\n```\n\n### Init map with callback\n\n```javascript\nMingmaps.Map.initMap('map',{\n  center: {\n    lat: 41.4265774,\n    lng: 14.4789369\n  },\n  zoom: 6,\n  disableDefaultUI: true,\n  mapTypeId: 'hybrid'\n},function(map){\n  // operation after create map\n});\n```\n\n### create marker\n```javascript\n\nvar marker_data = {\n  map:map,\n  position: {\n    lat: 40.4309669,\n    lng: 17.4690898,\n  },\n  title: 'My marker',\n  animation: google.maps.Animation.DROP,\n  draggable: false,\n};\n\nMingmaps.Marker.create(marker_data,null,\n   (marker) =\u003e {\n    //operation on marker\n   }\n);\n```\n\n### create marker with circle\n```javascript\n\nvar marker_data = {\n  map:map,\n  position: {\n    lat: 40.4309669,\n    lng: 17.4690898,\n  },\n  title: 'My marker',\n  animation: google.maps.Animation.DROP,\n  draggable: false,\n};\n\nvar circle_data = {\n  strokeColor: '#e1e6ed',\n  strokeOpacity: 0.8,\n  strokeWeight: 1,\n  fillColor: '#e1e6ed',\n  fillOpacity: 0.25,\n  draggable: false,\n  radius: 200\n};\n\nMingmaps.Marker.create(marker_data,circle_data,\n   (marker,circle) =\u003e {\n    //operation on marker or circle\n   }\n);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedsol%2Fmingmaps-library","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fedsol%2Fmingmaps-library","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedsol%2Fmingmaps-library/lists"}