[Vue warn]: ошибка в подключенном хуке: «ReferenceError: Google не определен - PullRequest
0 голосов
/ 07 апреля 2020

Я создаю карту в реальном времени в laravel, используя VUE js. и проблема в том, что моя карта не загружена на сервер, но загружена на мой локальный сервер. в консоли выдает это сообщение [Vue warn]: ошибка в смонтированном хуке: «ReferenceError: Google не определено

код моего компонента

<template>
<div class="container">
    <div class="row justify-content-center">
        <div class="col-md-8">
            <div class="card">
                <div class="card-header">Example Component</div>
                <button class="btn btn-success" @click="updateLocation">Update Position</button>
                <div class="card-body">

                    <div id="realtimemap" style="height: 412px; width: 100%;"></div>

                </div>
            </div>
        </div>
    </div>
    </div>
  </template>

  <script>

  export default{

    data(){

        return{
            map:null,
            marker:null,
            center:{lat: +10, lng: +10},
            data:null,
            lineCoordinates:[]
        }
    },

    methods:{

        mapInit(){


            this.map = new google.maps.Map(document.getElementById('realtimemap'),{
                center: this.center,
                zoom: 8
            });

            this.marker = new google.maps.Marker({
                map: this.map,
                position: this.center,
                animation:"bounce",
            });
        },

        updateMap(){
            let newPosition = {lat:this.data.lat,lng:this.data.long};
            this.map.setCenter(newPosition);
            this.marker.setPosition(newPosition);

            this.lineCoordinates.push(new google.maps.LatLng(newPosition.lat,newPosition.lng));

            var lineCoordinatesPath = new google.maps.Polyline({
                path: this.lineCoordinates,
                geodesic: true,
                map: this.map,
                strokeColor: '#FF000',
                strokeOpacity: 1.0,
                strokeWeight: 2
            });
        },

        updateLocation(){

            let randomNumber=Math.random();

            let position={
                lat:10+randomNumber,
                long:10+randomNumber
            };

            axios.post('/api/map',position).then(response=>{
                console.log(response);
            })
        }

    },

    mounted() {
        console.log('Component mounted.');
        this.mapInit();
    },
    created(){
        Echo.channel('location')
            .listen('SendLocation', (e) => {
                this.data=e.location;

                this.updateMap();
                console.log(e);
        });
    }
}

код моего клинка

@extends("frontend.layouts.dashboard-layout")

@section("title","Realtime Map | Android Monitoring Dashboard")

@section("content")


<div id="page-wrapper">
<div class="main-page">
<div class="flex-center position-ref full-height">

    <div class="content">
        <div class="title m-b-md" id="app">
            <example-component></example-component>
        </div>
    </div>
    </div>

    <script async defer src="https://maps.googleapis.com/maps/api/js?key=******&callback=initMap" type="text/javascript"></script>
    <script src="{{ asset('js/app.js') }}"></script>
  </div>
  </div>


 @endsection

введите описание изображения здесь

пожалуйста помогите мне

заранее спасибо

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...