googleMaps.vue 987 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template>
  2. <view :style="{width:width,height:height}">
  3. <view :style="{width:width,height:height}" id='map111'></view>
  4. </view>
  5. </template>
  6. <script>
  7. import { Loader } from "@googlemaps/js-api-loader"
  8. export default {
  9. props:{
  10. width: {
  11. type: String,
  12. default: '100%'
  13. },
  14. height: {
  15. type: String,
  16. default: '100%'
  17. },
  18. },
  19. data() {
  20. return {
  21. maps: null,
  22. loader:null
  23. }
  24. },
  25. mounted() {
  26. console.log('哈哈哈')
  27. let loader = new Loader({
  28. apiKey: "AIzaSyCWxFJPWgJP8hb2cTbvfZb13tbm2rlhxgs",
  29. version: "weekly",
  30. });
  31. this.init(loader)
  32. },
  33. methods: {
  34. async init(loader) {
  35. loader.load().then(async res => {
  36. const {
  37. Map
  38. } = await google.maps.importLibrary("maps");
  39. this.map = new Map(document.getElementById("map111"), {
  40. center: {
  41. lat: -34.397,
  42. lng: 150.644
  43. },
  44. zoom: 8,
  45. });
  46. }).catch(err=>{
  47. console.log(err)
  48. });
  49. }
  50. }
  51. }
  52. </script>
  53. <style>
  54. </style>