InstallationFirst install the pigeon-maps package# using yarnyarn add pigeon-maps # using npmnpm install --save pigeon-mapsCopyThen import whichever components you need from the package:import React from "react"import { Map, Marker } from "pigeon-maps" export function MyMap() { return ( <Map height={300} defaultCenter={[50.879, 4.6997]} defaultZoom={11}> <Marker width={50} anchor={[50.879, 4.6997]} /> </Map> )}Copy