Skip to main content

Region and Language

Use the region and language options to localize your map.

For more information
main.ts
import { createGmapVuePlugin } from '@gmap-vue/v3';
import '@gmap-vue/v3/dist/style.css';
import { createApp } from 'vue';
import App from './App.vue';
import './style.css';

createApp(App)
.use(
createGmapVuePlugin({
load: {
key: '...',
region: 'VI',
language: 'vi',
},
})
)
.mount('#app');