googleMaps.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <view :style="{width:width,height:height}">
  3. <view :style="{width:width,height:height}" id='map'></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. myLocations:{
  19. type:Object,
  20. default:{}
  21. }
  22. },
  23. data() {
  24. return {
  25. maps: null,
  26. loader:null
  27. }
  28. },
  29. mounted() {
  30. // https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap
  31. const script = document.createElement('script')
  32. script.src =
  33. 'https://maps.googleapis.com/maps/api/js?key=AIzaSyCWxFJPWgJP8hb2cTbvfZb13tbm2rlhxgs&callback=initMap&v=weekly&loading=async';
  34. script.async = true; // 异步加载
  35. script.defer = true; // 延迟执行
  36. document.head.appendChild(script)
  37. window.initMap = function() {
  38. console.log('啦啦啦啦')
  39. };
  40. // let loader = new Loader({
  41. // apiKey: "AIzaSyCWxFJPWgJP8hb2cTbvfZb13tbm2rlhxgs",
  42. // version: "weekly",
  43. // });
  44. // this.init(loader)
  45. },
  46. methods: {
  47. async init(loader) {
  48. loader.load().then(async res => {
  49. console.log(res)
  50. const {
  51. Map
  52. } = await google.maps.importLibrary("maps");
  53. this.map = new Map(document.getElementById("map"), {
  54. center: {
  55. lat: -34.397,
  56. lng: 150.644
  57. },
  58. zoom: 8,
  59. });
  60. }).catch(err=>{
  61. console.log(err)
  62. });
  63. }
  64. }
  65. }
  66. </script>
  67. <style>
  68. </style>