我想使用 Angularjs 创建 Highcharts 地图,我该怎么做?任何指令/库?
谢谢
我想使用 Angularjs 创建 Highcharts 地图,我该怎么做?任何指令/库?
谢谢
我没有找到,但您可以轻松地自己创建指令。只需创建一个配置如下的指令:
.directive('highmap',function($timeout){
return{
scope:{ },
restrict: 'EAC',
replace: true,
transclude: true,
template: '<div ng-transclude></div>',
controller: function($scope, $compile, $attrs, $element){
}
}
})
在控制器内部,您可以处理所有地图配置内容。不要忘记将渲染目标设置为 div 的 id。
我就是这样做的,遗憾的是我不允许分享它。