UNPKG

vue-azure-maps

Version:

Integrate Azure Maps in your Vue application

19 lines (13 loc) 454 B
import atlas from 'azure-maps-control' import { PluginFunction } from 'vue' export declare class VueAzureMaps { constructor(lib: typeof atlas, options?: VueAzureMapsPluginOptions) public readonly key: string public readonly atlas: typeof atlas public setSubscriptionKey: (key: string) => void static install: PluginFunction<VueAzureMapsPluginOptions> static version: string } export interface VueAzureMapsPluginOptions { key: string }