https://github.com/limistah/react-here-map
React components for working with Here Maps API
https://github.com/limistah/react-here-map
geocoding here heremaps places-autocomplete react react-js routing
Last synced: 16 days ago
JSON representation
React components for working with Here Maps API
- Host: GitHub
- URL: https://github.com/limistah/react-here-map
- Owner: limistah
- License: mit
- Created: 2019-01-06T05:48:31.000Z (over 6 years ago)
- Default Branch: 2_0
- Last Pushed: 2025-03-28T22:19:07.000Z (25 days ago)
- Last Synced: 2025-03-30T10:09:22.226Z (23 days ago)
- Topics: geocoding, here, heremaps, places-autocomplete, react, react-js, routing
- Language: TypeScript
- Homepage:
- Size: 4.94 MB
- Stars: 46
- Watchers: 1
- Forks: 15
- Open Issues: 2
-
Metadata Files:
- Readme: README.MD
- Contributing: CONTRIBUTING.MD
- License: LICENSE
Awesome Lists containing this project
README
# react-here-map
React components for rendering and working with
[Here Maps](https://www.here.com/).It simplifies the use of the Here Map JavaScript API with the help React
components.The components can be imported and easily rendered. It also comes with seamless
configuration and modifications.## Demo
[See it here](https://limistah.github.io/react-here-map/)
## Installation
Using NPM:
---
```bash
npm i --save react-here-map
```
---
Using Yarn:---
```bash
yarn add react-here-map
```
---
## General Usage---
```js
import React from "react";
import ReactDOM from "react-dom";
import HPlatform, { HMap, HMapCircle } from "react-here-map";const points = [
{ lat: 52.5309825, lng: 13.3845921 },
{ lat: 52.5311923, lng: 13.3853495 },
{ lat: 52.5313532, lng: 13.3861756 },
{ lat: 52.5315142, lng: 13.3872163 },
{ lat: 52.5316215, lng: 13.3885574 },
{ lat: 52.5320399, lng: 13.3925807 },
{ lat: 52.5321472, lng: 13.3935785 },
];ReactDOM.render(
,
document.getElementById("app")
);
```
---
## CHANGES**06/05/2020**
- Includes support for V3.1 API_KEY
## Contributions
See the [./CONTRIBUTING.MD](CONTRIBUTING.MD)
## Licence
MIT