Last active
December 11, 2020 03:05
-
-
Save gen-yamada/454f783ede64fc63d81c6570b711cba1 to your computer and use it in GitHub Desktop.
vue.js nuxt.js google-map
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="Map-box"> | |
<client-only> | |
<GmapMap | |
class="Map" | |
:center="map.center" | |
:zoom="map.zoom" | |
:options="options" | |
map-type-id="roadmap" | |
> | |
<GmapMarker id="marker" | |
:position="marker.position" | |
:title="marker.title" | |
:clickable="true" | |
:draggable="false" | |
:icon="marker.icon" | |
> | |
</GmapMarker> | |
</GmapMap> | |
</client-only> | |
</div> | |
</template> | |
<script> | |
export default { | |
data() { | |
return { | |
map: { | |
center: { | |
lat: 33.589145, | |
lng: 130.423419 | |
}, | |
zoom: 16, | |
}, | |
marker: { | |
position: { | |
lat: 33.589145, | |
lng: 130.423419 | |
}, | |
}, | |
} | |
} | |
} | |
</script> | |
<style lang="scss" scoped> | |
.Map-box { | |
height: 200px; | |
.Map { | |
height: 200px; | |
width: 100%; | |
} | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment