# Installation

# NPM

npm install vue-azure-maps

# Yarn

yarn add vue-azure-maps

# Setup

TIP

Get an Azure Maps key at https://azure.com/maps

When using with a module system, you must explicitly install vue-azure-maps via Vue.use():

import VueAzureMaps from 'vue-azure-maps'
import Vue from 'vue'

Vue.use(VueAzureMaps, {
  key: '<Your Azure Maps key>',
})

You don't need to do this when using global script tags.