{"id":14957074,"url":"https://github.com/limistah/react-here-map","last_synced_at":"2025-04-06T12:08:44.029Z","repository":{"id":45551090,"uuid":"164279364","full_name":"limistah/react-here-map","owner":"limistah","description":"React components for working with Here Maps API","archived":false,"fork":false,"pushed_at":"2025-03-28T22:19:07.000Z","size":5176,"stargazers_count":46,"open_issues_count":2,"forks_count":15,"subscribers_count":1,"default_branch":"2_0","last_synced_at":"2025-03-30T10:09:22.226Z","etag":null,"topics":["geocoding","here","heremaps","places-autocomplete","react","react-js","routing"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/limistah.png","metadata":{"files":{"readme":"README.MD","changelog":null,"contributing":"CONTRIBUTING.MD","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}},"created_at":"2019-01-06T05:48:31.000Z","updated_at":"2025-01-22T13:03:35.000Z","dependencies_parsed_at":"2023-12-19T11:05:06.599Z","dependency_job_id":"a98b7819-cf9d-4641-a550-4b985b72fba6","html_url":"https://github.com/limistah/react-here-map","commit_stats":{"total_commits":107,"total_committers":4,"mean_commits":26.75,"dds":0.03738317757009346,"last_synced_commit":"8eece31cba0db12416df9420bd0ec36c78fee553"},"previous_names":["limistah/react-here-map-interactive","limistah/react-location-map"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limistah%2Freact-here-map","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limistah%2Freact-here-map/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limistah%2Freact-here-map/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/limistah%2Freact-here-map/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/limistah","download_url":"https://codeload.github.com/limistah/react-here-map/tar.gz/refs/heads/2_0","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247478323,"owners_count":20945266,"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":["geocoding","here","heremaps","places-autocomplete","react","react-js","routing"],"created_at":"2024-09-24T13:14:02.895Z","updated_at":"2025-04-06T12:08:44.008Z","avatar_url":"https://github.com/limistah.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# react-here-map\n\nReact components for rendering and working with\n[Here Maps](https://www.here.com/).\n\nIt simplifies the use of the Here Map JavaScript API with the help React\ncomponents.\n\nThe components can be imported and easily rendered. It also comes with seamless\nconfiguration and modifications.\n\n## Demo\n\n[See it here](https://limistah.github.io/react-here-map/)\n\n## Installation\n\nUsing NPM:\n\n---\n```bash\nnpm i --save react-here-map\n```\n---\nUsing Yarn:\n\n---\n```bash\nyarn add react-here-map\n```\n---\n## General Usage\n\n---\n```js\nimport React from \"react\";\nimport ReactDOM from \"react-dom\";\nimport HPlatform, { HMap, HMapCircle } from \"react-here-map\";\n\nconst points = [\n  { lat: 52.5309825, lng: 13.3845921 },\n  { lat: 52.5311923, lng: 13.3853495 },\n  { lat: 52.5313532, lng: 13.3861756 },\n  { lat: 52.5315142, lng: 13.3872163 },\n  { lat: 52.5316215, lng: 13.3885574 },\n  { lat: 52.5320399, lng: 13.3925807 },\n  { lat: 52.5321472, lng: 13.3935785 },\n];\n\nReactDOM.render(\n  \u003cHPlatform\n      options={{\n        apiKey: 'TIAGlD6jic7l9Aa8Of8IFxo3EUemmcZlHm_agfAm6Ew',\n        appId: 'EF8K24SYpkpXUO9rkbfA',\n        includePlaces: false,\n        includeUI: true,\n        interactive: true,\n        version: 'v3/3.1'\n      }}\n    \u003e\n      \u003cHMap\n        options={{\n          center: {\n            lat: 52.5309825,\n            lng: 13.3845921\n          }\n        }}\n        style={{\n          height: '480px',\n          width: '100%'\n        }}\n        useEvents\n      \u003e\n        \u003cHMapCircle\n          coords={{\n            lat: 52.5309825,\n            lng: 13.3845921\n          }}\n          events={{\n            pointerdown: function noRefCheck(){},\n            pointerenter: function noRefCheck(){},\n            pointerleave: function noRefCheck(){},\n            pointermove: function noRefCheck(){}\n          }}\n          options={{\n            style: {\n              fillColor: 'rgba(0, 128, 0, 0.7)',\n              lineWidth: 4,\n              strokeColor: 'rgba(55, 85, 170, 0.6)'\n            }\n          }}\n          radius={10000}\n          setVisibility\n          zoom={8}\n        /\u003e\n      \u003c/HMap\u003e\n    \u003c/HPlatform\u003e,\n  document.getElementById(\"app\")\n);\n```\n---\n## CHANGES\n\n**06/05/2020**\n\n- Includes support for V3.1 API_KEY\n\n## Contributions\n\nSee the [./CONTRIBUTING.MD](CONTRIBUTING.MD)\n\n## Licence\n\nMIT\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flimistah%2Freact-here-map","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flimistah%2Freact-here-map","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flimistah%2Freact-here-map/lists"}