0.2.13 • Published 4 years ago

vue-geo-heat-maps v0.2.13

Weekly downloads
3
License
MIT
Repository
-
Last release
4 years ago

Vue Geo Heat Maps

Official Github

Forked from ghrehh's package vue-world-map A Vue JS Component for displaying dynamic data on a world map.

Map from amCharts

Installation

Install via npm using npm install vue-geo-heat-maps

Usage

This component is most useful in creating a heat map for various countries. And will color countries differently based on a props passed.

The component requires a prop of countryData to be passed to it, which is a JS object formatted like so.

{
  US: 100,
  CA: 120,
  UK: 400,
}

For Individual Countries pass the ISO 3166 Code to the map prop. If nothing is passed the default is "world".

map="US"

for US the values for the states can be set like this:

{
  US_CA: 100,
  CA_NY: 120,
  UK_TX: 400,
}

note: Only US country map is available. Other countries are coming soon..

Where the key is a country's ISO 3166 Code and the value is a numerical value associated with it.

Example

<template>
  <div>
    <Map
      :countryData="{ US: 300, CA: 400 }"
    />

    <Map
      map="US"
      :countryData="{ US_CA: 300, US_NJ: 400 }"
    />
  </div>
</template>

<script>
  import map from 'vue-geo-heat-maps'
  .
  .
  .

API

PropsDescriptionOptional
countryDataSee Usage Section above for detailsno
lowColorCountries with lower values will be colored more strongly with this coloryes
highColorCountries with higher values will be colored more strongly with this coloryes
defaultCountryFillColorCountries with no data will default to this coloryes
countryStrokeColorThe color of the border around countriesyes
0.2.13

4 years ago

0.2.12

4 years ago

0.2.11

4 years ago

0.2.10

4 years ago

0.2.9

4 years ago

0.2.8

4 years ago

0.2.7

4 years ago

0.2.6

4 years ago

0.2.3

4 years ago

0.2.5

4 years ago

0.2.4

4 years ago

0.2.2

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago