deblocker / jsvectormap

A lightweight Javascript library for creating interactive maps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A lightweight Javascript library for creating interactive maps

Jsvectormap

First of all this project is modified version of jvectormap
I created this project to help developers who aren't using jQuery in their projects.

The changes have been done

IE 8 has been dropped.
The VML is no longer supported.
jQuery removed the project is pure Javascript.

Demo

Checkout here https://3iw9b.csb.app
Code in codesandbox

Installation

Installing with npm is recommended.

npm i jsvectormap

Download

You can download the latest version from the Github: Download

Quick start

<link rel="stylesheet" href="dist/css/jsvectormap.min.css" />
<script src="dist/js/jsvectormap.min.js"></script>
<script src="dist/maps/world.js"></script>

<script>
var map = new JsVectorMap({
  // Or Element example: document.querySelector('#map')
  selector: '#map',
  map: 'world'
});
</script>

If you're using webpack or something like that you'll need to import the map you want to work with after importing the library.

@import 'jsvectormap'
@import 'jsvectormap/dist/maps/world.js'

const map = new JsVectorMap({
  selector: '#map',
  map: 'world',
})

Sass

@import 'jsvectormap'

Options

map 'world'

mapBgColor 'transparent'

The map's container background color

draggable 'true'

Change the map scale when dragging

zoomButtons 'true'

Show zoom buttons

zoomOnScroll 'true'

Zoom the map when scolling.

zoomOnScrollSpeed '3'

The scroll speed when scrolling

zoomMax '12'

Maximum map zoom

zoomMin '1'

Minimum map zoom

zoomAnimate 'true'

Animate when zomming the map

showTooltip 'true'

Show tooltip

Markers options

markersSelectable 'false'

The marker is selectable

markerStyle 'object'

Let's see an example instead, since the options is so clear.

markerStyle: {
  initial: {
    r: 8, // Marker width
    fill: 'black', // Marker color
    fillOpacity: 1, // The opacity of the marker shape
    stroke: '#FFF', // Stroke
    strokeWidth: 6, // the stroke width
    strokeOpacity: .65, // The stroke opacity
  },
  // All options in initial object can be overitten in hover, selected, selectedHover object as well.
  hover: {
    stroke: 'black',
    cursor: 'pointer',
    strokeWidth: 2,
  },
  selected: {
    fill: 'blue'
  },
  selectedHover: {
    fill: 'red'
  }
},

regionStyle 'object'

The same as markerStyle there's no diffrence.

Don't forget to see samples folder it has important tips.

Events

Name Description Params
onViewportChange Triggered when map viewport was changed scale - transX - transY
onRegionSelected Triggered when a region was selected index, isSelected, selectedRegions
onMarkerSelected Triggered when a marker was selected code, isSelected, selectedMarkers
onRegionTooltipShow Triggered when region tooltip was shown tooltip, code
onMarkerTooltipShow Triggered when marker tooltip was shown tooltip, code

Contributions

Your contributions always welcome

License

jsvectormap licensed under MIT.

About

A lightweight Javascript library for creating interactive maps

License:MIT License


Languages

Language:JavaScript 96.8%Language:HTML 2.8%Language:CSS 0.4%