将Google Maps VueJS组件(vue2-google-maps)集成到Laravel刀片视图中

时间:2019-06-16 00:14:28

标签: javascript laravel vue.js vuejs2 vue2-google-maps

我正在使用 vue2-google-maps npm软件包将 Google Maps Vue JS 组件集成到 Laravel 应用程序视图中。

>

根据npm package documentation,我正在使用以下命令从npm包中加载vue组件:

import * as VueGoogleMaps from 'vue2-google-maps';

Vue.use(VueGoogleMaps, {
  load: {
    key: 'mapkey',
    libraries: 'places'
  }
});

然后我将刀片视图内的组件与文档中的示例代码一起使用:

    <GmapMap
      :center="{lat:10, lng:10}"
      :zoom="7"
      map-type-id="terrain"
      style="width: 100%; height: 500px" 
      id="googleMap"
    >
        <GmapMarker
            :key="index"
            v-for="(m, index) in mapPoints"
            :position="m.position"
            :clickable="true"
            :draggable="true"
            @click="center=m.position"
        >
        </GmapMarker>
    </GmapMap>

但是,我收到以下错误:

  

未知的自定义元素:-您是否注册了组件   正确吗?对于递归组件,请确保提供“名称”   选项。


经过一番研究,我发现this post使用了不同的组件名称,因此我尝试使用备用组件名称 gmap-map gmap-marker ,但这导致了相同的错误。

<gmap-map
  :center="center"
  :zoom="12"
  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>

然后我尝试直接导入Map And Marker组件,而不是递归地导入所有组件。但是,这会产生相同的错误:

import GmapMap from 'vue2-google-maps/src/components/map';
import GmapMarker from 'vue2-google-maps/src/components/marker';

Vue.component('GmapMap', GmapMap);
Vue.component('GmapMarker', GmapMarker);

我在做什么错了?

1 个答案:

答案 0 :(得分:1)

仅在installComponents的{​​{1}}选项下安装插件中的组件。

https://github.com/xkjyeah/vue-google-maps/blob/v0.10.5/src/main.js#L69

true