Angular2/ionic2 angular2-google-maps 错误找不到名称'google'

Angular2/ionic2 angular2-google-maps error Cannot find name 'google'

我按照 this example (click here) 创建了一个自动完成地址字段 google map Places,

但出现以下错误:

Can not find name 'google'.

L53: this.mapsAPILoader.load (). Then (() => {

L54: let autocomplete = new google.maps.places.Autocomplete 
(this.searchElementRef.nativeElement, {

我尝试安装 google-maps types npm install --save @types/google-maps 但没有结果。

安装@types/google-maps 后构建正常,但是当我 luanch 时出现此错误:

Cannot find name 'google' after installing @types/google-maps

我的代码:

import { FormControl } from '@angular/forms';
import { Component, ViewChild, OnInit, ElementRef } from '@angular/core';
import { NavController, NavParams } from 'ionic-angular';
import { MapsAPILoader } from 'angular2-google-maps/core';


@Component({
  selector: 'page-page2',
  templateUrl: 'page2.html'
})
export class Page2 implements OnInit {

  latitude: number = 51.678418;
  longitude: number = 7.809007;
  zoom: number = 4;

  searchControl: FormControl;

  @ViewChild("search")
  searchElementRef: ElementRef;

  constructor(public navCtrl: NavController, public navParams: NavParams, private mapsAPILoader: MapsAPILoader) {
// some not related to this question code
  }

  ngOnInit() {
    //create search FormControl
    this.searchControl = new FormControl();

    //set current position
    this.setCurrentPosition();

    //load Places Autocomplete
    this.mapsAPILoader.load().then(() => {
      let autocomplete = new google.maps.places.Autocomplete(this.searchElementRef.nativeElement, {
        types: ["address"]
      });
      autocomplete.addListener("place_changed", () => {
        //get the place result
        let place: google.maps.places.PlaceResult = autocomplete.getPlace();

        //set latitude and longitude
        this.latitude = place.geometry.location.lat();
        this.longitude = place.geometry.location.lng();
      });
    });
  }

  private setCurrentPosition() {
    if ("geolocation" in navigator) {
      navigator.geolocation.getCurrentPosition((position) => {
        this.latitude = position.coords.latitude;
        this.longitude = position.coords.longitude;
        this.zoom = 12;
      });
    }
  }

}

运行 typings install dt~google.maps --global

已找到 here