Skip to main content

Getting Started

Installation

Install from npmjs:

npm install --save @jetblack/map

React is a peer dependency and will not be automatically installed.

Usage

Here is a basic map with the default tile provider.

import { Map } from '@jetblack/map'

export default function App() {
return (
<Map width='600px' height='400px' />
)
}