0

我正在尝试使用 Nativescript+NG2 创建一个基于 Apple Map(MapKit) 的应用程序,但我不确定如何在模板中包含地图。我已经在 Nativescript-JS 应用程序中尝试过这个插件,但在 NS+NG2 中没有。

我尝试如下创建 MapViewEl 并且不显示任何错误或地图。

declare var MKMapView: any;
declare var UIScreen: any;

export class MapViewEl {
    private _ios: any;
    constructor() {
        console.log("MapViewEl");
        this._ios = MKMapView.alloc().initWithFrame( UIScreen.mainScreen().bounds );       
    }

    get ios(): any {
        return this._ios;
    }
} 


//in app.component.ts
@Component({
   selector:"<my-app></my-app>"
   template:"<StackLayout><MapViewEl></MapViewEl></StackLayout>"
})

有关如何处理此问题的任何链接或说明。

谢谢

4

1 回答 1

1

好吧,经过这么多的线索和错误,我找到了它,

我错过了它的 registerElement 部分,

//in app.component.ts
registerElement("MapViewEl", () => require("./mapsnew").MapViewEl);

@Component({
   selector:"<my-app></my-app>"
   template:"<StackLayout><MapViewEl></MapViewEl></StackLayout>"
})
于 2016-09-23T06:40:20.697 回答