Skip to content

xelatr/react-minimap

 
 

Repository files navigation

react-minimap

NPM

A minimap for React based on jquery-minimap

Demo

react-minimap

Installation

npm i --save react-minimap

Usage

import Minimap from 'react-minimap';
<Minimap selector=".card">
	<div className="card">
		<h1>Title</h1>
	</div>
	<div className="card">
		<h1>Title 2</h1>
		<div className="card">
			<h1>Titles are never rendered by the Minimap</h1>
		</div>
	</div>
</Minimap>

Configuration

The Minimap supports the following props:

Prop name Type Default value Description
selector string is required A css selector for specify what you want to render inside the minimap
className string '' A className for the minimap component
width number 200
height number 200
keepAspectRatio boolean false
childComponent any Internal Component Allows customizing how components matched by selector are rendered (optional)
onMountCenterOnX boolean false
onMountCenterOnY boolean false

Packages

No packages published

Languages

  • JavaScript 92.7%
  • CSS 3.9%
  • HTML 3.4%