For some reasons, I have to use new google.maps.Marker()
with vue2-google-maps
, but I don't know how to start since the documents and many people use <GmapMarker ... />
in the HTML part instead.
I've tried to search but the document doesn't cover this.
Right now my code looks like this, it doesn't have any error but it doesn't work either (the map is present but the marker isn't shown):
<template>
<div style="height: 100%; width: 100%;">
<GmapMap
:center="{ lat: 0, lng: 0 }"
ref="mapRef"
>
</GmapMap>
</div>
</template>
<script>
import * as VueGoogleMaps from 'vue2-google-maps';
export default {
computed: {
google: VueGoogleMaps.gmapApi,
},
methods: {
init() {
new this.google.maps.Marker({
position: {
lat: 0,
lng: 0
},
map: this.$refs.mapRef,
});
}
},
async mounted() {
this.init()
},
}
</script>