@simpals-dev/react-point-map

Base Point.Map component

Usage no npm install needed!

<script type="module">
  import simpalsDevReactPointMap from 'https://cdn.skypack.dev/@simpals-dev/react-point-map';
</script>

README

Base Point.Map Component

import React from 'react';
import Map, { Marker } from 'react-point-map';

export default () => (
  <Map width={800} height={600}>
    <Marker lat={47.0229} lng={28.8353} />
  </Map>
);