我正在尝试使用 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>"
})
有关如何处理此问题的任何链接或说明。
谢谢