我有以下源代码,当我尝试使用google.maps ...
实例化新的变量时,也出现了以下错误:
google'未定义
许多答案都谈到先异步加载API脚本,而且脚本的顺序很重要,但我认为这不是我的问题。
PS:我在main.js
Vue.use(VueGoogleMaps, {
load: {
key: 'MY-KEY',
libraries: 'places', //// If you need to use place input
},
})
有人可以帮助我吗?谢谢。
<div class="map-container">
<gmap-map
id="map"
ref="map"
:center="center"
:zoom="15"
map-type-id="roadmap"
style="width:100%; height: 400px;">
<gmap-marker
:key="index"
v-for="(m, index) in markers"
:position="m.position"
@click="center=m.position"
></gmap-marker>
</gmap-map>
</div>
<script>
import _ from 'lodash'
import { mapState } from 'vuex'
import * as VueGoogleMaps from 'vue2-google-maps'
export default {
computed: {
...mapState([
'map',
]),
mapStyle: function () {
const h = document.body.clientHeight - 80
return 'width: 100%; height: ' + h + 'px'
},
center: function () {
return { lat: 44.837938, lng: -0.579174 }
},
},
mounted: function () {
VueGoogleMaps.loaded.then(() => {
var map = new google.maps.Map(document.getElementById('map'))
}
},
答案 0 :(得分:1)
您忘记了一个括号:
VueGoogleMaps.loaded.then(() => {
var map = new google.maps.Map(document.getElementById('map'))
})
告诉我,如果有帮助的话。
如果您需要访问
<template> <GmapMarker ref="myMarker" :position="google && new google.maps.LatLng(1.38, 103.8)" /> </template> <script> import {gmapApi} from 'vue2-google-maps' export default { computed: { google: gmapApi } } </script>
答案 1 :(得分:1)
当您将所有内容导入为VueGoogleMaps
时,我会假设google
在此对象内。
编辑:似乎google
对象被称为gmapApi
。
所以改变
var map = new google.maps.Map(document.getElementById('map'))
到
let map = new VueGoogleMaps.gmapApi.maps.Map(document.getElementById('map'))
由于您没有明确导入任何内容,因此所有内容都应位于VueGoogleMaps
之内。因此,如果要将其命名为google
,请按照其他答案中的说明添加计算字段,除了gmapApi
应该位于VueGoogleMaps
内。
所以
computed() {
google: VueGoogleMaps.gmapApi
}
答案 2 :(得分:1)
如果您收到“ 空值映射”,则表示Google计算的属性尚未准备好。
尝试一下:
computed: {
google: VueGoogleMaps.gmapApi
}
...
在您的方法中等待gmapApi:
this.$gmapApiPromiseLazy().then(() => {
//your code here
//E.g. for directions
var directionsService = new this.google.maps.DirectionsService();
});