【发布时间】:2018-03-01 00:13:37
【问题描述】:
你好吗?我正在学习带有 Ionic 3 的 Google 地图教程。我已经完成了那里解释的一切,但是当项目启动时,出现了这个错误。我调查了很多,但没有任何效果。谢谢!
Error: Uncaught (in promise): ReferenceError: google is not defined
ReferenceError: google is not defined
这是我的代码:
home.ts
import { Component, ViewChild, ElementRef } from '@angular/core';
import { NavController } from 'ionic-angular';
import { IonicPage } from 'ionic-angular';
declare var google;
@IonicPage()
@Component({
selector: 'page-home',
templateUrl: 'home.html'
})
export class HomePage {
@ViewChild('map') mapElement:ElementRef;
map: any;
start = 'chicago, il';
end = 'chicago, il';
directionsService = new google.maps.DirectionsService;
directionsDisplay = new google.maps.DirectionsRenderer;
constructor(public navCtrl: NavController) {
}
ionViewLoad(){
this.initMap();
}
initMap(){
this.map = new google.maps.Map(this.mapElement.nativeElement,
{
zoom: 7,
center: {lat: 41.85, lng: -87.65}
});
this.directionsDisplay.setMap(this.map);
}
calculateAndDisplayRoute(){
this.directionsService.route({
origin: this.start,
destination: this.end,
travelMode: 'DRIVING',
}, (response, status) => {
if(status == 'OK'){
this.directionsDisplay.setDirections(response);
}else{
window.alert('Directions request failed due to ' +
status);
}
});
}
}
【问题讨论】:
-
这是一个cordova插件吗?你在设备上运行吗?
-
没有。笔记本电脑浏览器。是的,是一个cordova插件。
-
cordova 插件未使用
ionic serve加载。使用模拟器/设备 -
好的。我要试试这条路。
-
在
index.html链接谷歌地图js SDK文件。
标签: angular google-maps typescript ionic3