从基于打字稿的角度控制器调用GoogleMap MarkerClusterer方法

时间:2015-08-18 10:49:03

标签: javascript angularjs google-maps typescript markerclusterer

我已经开始在我的项目中调查TypeScript方法,并且目前对如何正确组织对MarkerClusterer方法的调用感到困惑。我目前需要输入类型定义:

///<reference path="../../typings/angularjs/angular.d.ts" /> 
///<reference path="../../typings/google.maps.d.ts" /> 

但对于MarkerClusterer,我无法找到定义ts库。我的代码现在看起来如此:

class paspController {

public map: any;
public markers;
public mapTab: boolean;
public currentId: number;

//Some code

showTab(tabIndex: number) {
    if (tabIndex == 2) {
        this.mapTab = true;
        var that = this;
        setTimeout(function () {
            this.options = {
                zoom: 2,
                center: new google.maps.LatLng(1, 1),
                mapTypeId: google.maps.MapTypeId.ROADMAP
            };
            if (!that.map) {
                that.map = new google.maps.Map(document.getElementById('map'), this.options);
            }
            jQuery.ajax({
                type: "GET",
                url: 'GetDivesWithCoordinates/' + that.currentId,
                success: function (data) {                      
                    that.markers = [];
                    var marker;                       
                    for (var i = 0; i < data.length; i++) {
                        marker = new google.maps.Marker({ map: that.map, draggable: false, title: data[i].Location + ": " + data[i].DiveComment, position: new google.maps.LatLng(data[i].CoordinateX, data[i].CoordinateY) });
                        that.markers.push(marker);
                    }
                   // THIS IS MY PROBLEM => var markerCluster = new MarkerClusterer(that.map, markers);
                },
                error: function (e) {
                },
                async: false
            });
        }, 100);           
    }
}

我应该如何正确调用MarkerClusterer,或者我应该把它放在控制器逻辑之外?

3 个答案:

答案 0 :(得分:2)

  

这是我的问题=&gt; var markerCluster = new MarkerClusterer(that.map,markers);

声明:

declare var MarkerClusterer:any;

打字稿不会再抱怨了。

更多:http://basarat.gitbooks.io/typescript/content/docs/types/migrating.html

答案 1 :(得分:1)

使用下面的 npm 包,而不是直接在 angular 中添加脚本。

将此包添加到您的 node_modules

npm i @googlemaps/markerclustererplus

在您的 Ts 文件中导入:

import MarkerClusterer from '@googlemaps/markerclustererplus';

const markerCluster = new MarkerClusterer(map, markers);

参考:https://github.com/googlemaps/js-markerclustererplus

答案 2 :(得分:0)

我把它放在:

之后
import { Component, OnInit, ViewChild, ElementRef } from '@angular/core';

declare var MarkerClusterer: any;

之前

@Component({