我正在尝试在 Angular 2 应用程序中使用 ammaps。查看代码很明显,我的组件不知道该库。
这就是我的文件的样子:
map.component.html
<script src="http://www.ammap.com/lib/ammap.js" type="text/javascript"> </script>
<script src="http://www.ammap.com/lib/maps/js/worldLow.js" type="text/javascript"></script>
<div id="mapdiv" style="width: 600px; height: 400px;"></div>
map.component.ts
import { Component } from '@angular/core';
//saw this on another SO article so that
//typescript does not shout for type not defined
declare var AmCharts: any;
@Component({
selector: 'newsmap-map',
templateUrl: 'app/views/map.component.html',
directives: [],
styleUrls: ['app/css/map.component.css']
})
export class MapComponent {
AmCharts: any;
//using ngOnint to call the required
//javascript that I've pulling in the html file
ngOnInit(){
this.AmCharts = new AmCharts({
makeChart( "mapdiv", {
"type": "map",
"dataProvider": {
"map": "worldLow",
"getAreasFromMap": true
},
"areasSettings": {
"autoZoom": true,
"selectedColor": "#CC0000"
},
"smallMap": {}
} )
}
}
}
现在我该如何进行这项工作?这是我的 ammaps 指南。
谢谢!