{"id":30107051,"url":"https://github.com/benignware/jquery-findus","last_synced_at":"2025-08-10T01:33:01.335Z","repository":{"id":27326925,"uuid":"30801431","full_name":"benignware/jquery-findus","owner":"benignware","description":"Create contact-maps easily","archived":false,"fork":false,"pushed_at":"2017-04-27T21:11:10.000Z","size":64,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-11T05:55:01.139Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://benignware.github.io/jquery-findus","language":"JavaScript","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/benignware.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}},"created_at":"2015-02-14T16:18:34.000Z","updated_at":"2018-09-25T02:30:33.000Z","dependencies_parsed_at":"2022-07-24T15:00:05.542Z","dependency_job_id":null,"html_url":"https://github.com/benignware/jquery-findus","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/benignware/jquery-findus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benignware%2Fjquery-findus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benignware%2Fjquery-findus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benignware%2Fjquery-findus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benignware%2Fjquery-findus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/benignware","download_url":"https://codeload.github.com/benignware/jquery-findus/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benignware%2Fjquery-findus/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269663320,"owners_count":24455798,"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","status":"online","status_checked_at":"2025-08-09T02:00:10.424Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2025-08-10T01:32:04.712Z","updated_at":"2025-08-10T01:33:01.298Z","avatar_url":"https://github.com/benignware.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jquery-findus\n\n\u003e Create contact-maps easily.\n\nA jquery-plugin that lets you quickly build a customizable map without hassling with google maps api. \n\n[Demo](http://benignware.github.io/jquery-findus)\n\n## Install\n\nInclude js dependencies\n\n```html\n\u003cscript src=\"https://code.jquery.com/jquery-1.11.2.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"http://maps.googleapis.com/maps/api/js\"\u003e\u003c/script\u003e\n\u003cscript src=\"js/jquery.findus.min.js\"\u003e\u003c/script\u003e\n```\n\nOptionally include css\n\n```html\n\u003clink rel=\"stylesheet\" href=\"css/jquery.findus.css\"\u003e\n```\n\n## Usage\n\nProvide geocodeable content\n\n```html\n\u003cdiv class=\"findus\"\u003e\n  \u003ch4\u003eFind us here\u003c/h4\u003e\n  8411 Market Street\u003cbr/\u003e\n  San Francisco\u003cbr/\u003e\n  CA 94103\u003cbr/\u003e\n  USA\n\u003c/div\u003e\n```\n\nInitialize findus\n\n```js\n$(function() {\n  $('.findus').findus();\n});\n```\n\n### Examples\n\n##### Provide location\nYou may also reverse-geocode an address from a location:\n\n```html\n\u003cdiv class=\"findus\" data-latitude=\"37.77485730000001\" data-longitude=\"-122.41962339999998\"\u003e\u003c/div\u003e\n```\n\n##### Provide location and content\nTo avoid the geocoding service completely, provide both, an location and some content to show up in the map's info-window.\n\n```html\n\u003cdiv class=\"findus\" data-latitude=\"37.77485730000001\" data-longitude=\"-122.41962339999998\"\u003e\n  \u003ch4\u003eFind us here\u003c/h4\u003e\n  \u003cp\u003e\n    8411 Market Street\u003cbr/\u003e\n    San Francisco\u003cbr/\u003e\n    CA 94103\u003cbr/\u003e\n    USA\n  \u003c/p\u003e\n\u003c/div\u003e\n```\n\nOptions\n-------\n\nYou can also use data-attributes to setup the component. Target subsets by using prefixes, such as 'marker-icon'.\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003cth\u003eName\u003c/th\u003e\u003cth\u003eDescription\u003c/th\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eaddress\u003c/td\u003e\u003ctd\u003eA geocodeable address string\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eautoShow\u003c/td\u003e\u003ctd\u003eSpecifies whether to show info-window on render. Defaults to true.\u003c/td\u003e\n  \u003ctr\u003e\n    \u003ctd\u003ebindResize\u003c/td\u003e\u003ctd\u003eSpecifies whether to bind window resize. Defaults to true.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003econtent\u003c/td\u003e\u003ctd\u003eHTML content to be shown in info-window. A geocodeable string can be explicitly defined by containing it in an address-tag.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003elatitude\u003c/td\u003e\u003ctd\u003eLocation coordinate latitude\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003elongitude\u003c/td\u003e\u003ctd\u003eLocation coordinate longitude\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003einfo\u003c/td\u003e\u003ctd\u003eOptions passed to the info-window instance\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003emap\u003c/td\u003e\u003ctd\u003eOptions passed to the map instance. Defaults to \u003cbr/\u003e\n    {\u003cbr/\u003e\n        \u0026nbsp;\u0026nbsp;zoom: 15,\u003cbr/\u003e\n        \u0026nbsp;\u0026nbsp;mapTypeId: google.maps.MapTypeId.ROADMAP,\u003cbr/\u003e\n        \u0026nbsp;\u0026nbsp;disableDefaultUI: true,\u003cbr/\u003e\n        \u0026nbsp;\u0026nbsp;draggable: false, \u003cbr/\u003e\n        \u0026nbsp;\u0026nbsp;zoomControl: false, \u003cbr/\u003e\n        \u0026nbsp;\u0026nbsp;scrollwheel: false, \u003cbr/\u003e\n        \u0026nbsp;\u0026nbsp;disableDoubleClickZoom: true\u003cbr/\u003e\n      }\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003emarker\u003c/td\u003e\u003ctd\u003eOptions passed to the marker instance\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n## Changelog\n\n#### Master\n\n* Optimize content geocoding\n\n#### v0.0.5\n\n* Added fix for map-icons\n\n#### v0.0.4\n\n* Set map option 'draggable' to false by default\n\n#### v0.0.3 \n\n* Fixed too strict jquery dependency\n\n#### v0.0.2\n\n* Added prefixed data-attributes. \n* Changed zoom default to 14. \n* Draggable map by default.\n\n#### v0.0.1\n\n* Initial Release","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenignware%2Fjquery-findus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenignware%2Fjquery-findus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenignware%2Fjquery-findus/lists"}