v-ymap
Vue components for work with yandex map.
Install Project as dependency
npm i v-ymap
Using
import { YMap } from 'v-ymap';
import 'v-ymap/style.css';
<YMap center={[11.111111,11.111111]} zoom={10} />
Or
import { YMap } from 'v-ymap';
<YMap center={[11.111111,11.111111]} zoom={10} class={'someSizesClass'} style={{height:'inherit',weight:'inherit'}}/>
Examples
<YMap center={[11.111111,11.111111]} zoom={10} />
<YMap center={[11.111111,11.111111]} zoom={10}>
<YRoute points={['City 17', 'City 10']}></YRoute>
</YMap>
Work with project
Building project
npm run build
Test
npm run test:server
npm run test