我已经开始研究项目中的TypeScript方法,并且目前对如何正确组织对MarkerClusterer方法的调用感到困惑。我目前必须输入类型定义参考:

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


但是对于MarkerClusterer js,我无法找到定义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,或者应该将其置于控制器逻辑之外?

最佳答案

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


声明:

declare var MarkerClusterer:any;


而且打字稿不会再抱怨了。

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

10-06 15:49