npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-svgmap-usa

v1.1.1

Published

Interactive SVG Map of USA with hover and click functionality

Downloads

20

Readme

React SVG Map USA

This package generates an interactive SVG map of USA. It allows users to highlight states on hover and retrieve the value of the selected state. The map includes all the states of USA.

USA Map

Installation

Install the package via npm:

npm install react-svgmap-usa

State List

The following are the states mapped with its ID.

const stateNames = {
  HI: 'Hawaii',
  AK: 'Alaska',
  FL: 'Florida',
  NH: 'New Hampshire',
  MI: 'Michigan',
  VT: 'Vermont',
  ME: 'Maine',
  RI: 'Rhode Island',
  NY: 'New York',
  PA: 'Pennsylvania',
  NJ: 'New Jersey',
  DE: 'Delaware',
  MD: 'Maryland',
  VA: 'Virginia',
  WV: 'West Virginia',
  OH: 'Ohio',
  IN: 'Indiana',
  IL: 'Illinois',
  CT: 'Connecticut',
  WI: 'Wisconsin',
  NC: 'North Carolina',
  DC: 'District of Columbia',
  MA: 'Massachusetts',
  TN: 'Tennessee',
  AR: 'Arkansas',
  MO: 'Missouri',
  GA: 'Georgia',
  SC: 'South Carolina',
  KY: 'Kentucky',
  AL: 'Alabama',
  LA: 'Louisiana',
  MS: 'Mississippi',
  IA: 'Iowa',
  MN: 'Minnesota',
  OK: 'Oklahoma',
  TX: 'Texas',
  NM: 'New Mexico',
  KS: 'Kansas',
  NE: 'Nebraska',
  SD: 'South Dakota',
  ND: 'North Dakota',
  WY: 'Wyoming',
  MT: 'Montana',
  CO: 'Colorado',
  ID: 'Idaho',
  UT: 'Utah',
  AZ: 'Arizona',
  NV: 'Nevada',
  OR: 'Oregon',
  WA: 'Washington',
  CA: 'California'
}

Usage

'use client'

import { useState } from 'react'
import USAMap from 'react-svgmap-usa'

export default function MapComponent() {
    const [state, setState] = useState('')

    return (
        <>
            <div>{state}</div>
            <USAMap
                onClick={(selectedValue: string) => setState(selectedValue)}
                size='500px'
                mapColor='white'
                strokeColor='#4f4f4f'
                strokeWidth='1'
                hoverColor='#3d3d3d'
            />
        </>
    )
}

Props Available

| Props | Description | Requirement | Default Value | |-------------|---------------------------------------------------------|-------------|---------------| | onClick | Callback function to get the selected state value. | Required | NA | | className | Custom classname for the map component. | Optional | "svgmap" | | size | Width of the map. | Optional | "inherit" | | mapColor | Color of the map. | Optional | "#ffffff" | | strokeColor | Border color of each state. | Optional | "#000000" | | strokeWidth | Border width of each state. | Optional | "0.5" | | hoverColor | Color of the state while hovering on it. | Optional | "#303030" |

Contributing

Pull requests are welcome.

Credits

Reference of SVG map taken from MAPSVG.