我正在尝试在Angular2应用程序中使用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": {}
        } )

    }
}

}
现在我该怎么做呢?
这是guide my ammaps
谢谢!

最佳答案

脚本标记在Angular2模板中不起作用,但是,您可以将非Angular代码放入索引HTML中,它也会起作用。
如果要在Angular2中使用代码,需要导入它并用ststem.js加载它。你只需要在npm上找到一个工作的amcharts库。
看看这个:Angular 2 and AmCharts
为了将来参考,你应该在发布问题之前使用搜索引擎。

10-07 21:59