在Leaflet弹出窗口中插入NVD3图表

时间:2016-05-26 13:19:01

标签: javascript angularjs popup leaflet angular-nvd3

在我的AngularJs网络应用程序中,我使用Leaflet.jsLeaflet markercluster制作地图。

使用nvd3.jsnvd3-angular-directive

渲染图表

我收到了来自世界各地的不同数据,并且我为每个接收过数据的国家显示了一个简单的CircleMarker

我的数据以这种方式组织:

{
  US : {country:"US", count:10, rate: {high: 3, medium: 4, low: 3}},
  IT : {country:"IT", count:4, rate: {high: 1, medium: 1, low: 2}}
}

这意味着在地图中,CircleMarker将显示在美国和意大利的中心。

现在让我们解决这个问题,我在每个CircleMarker上绑定一个弹出窗口,我希望每个弹出窗口包含一个nvd3饼图(特别是一个甜甜圈)图表将显示该特定国家rate的分布情况。

问题是目前地图正确渲染并且标记完美放置但是当我点击标记时,出现的弹出窗口是空的(见图)。我用谷歌搜索了,但是找不到任何可以帮助我的东西。

Empty Popup

<小时/> 这就是我构建CircleMarkers和集群的方式:

var markers = L.markerClusterGroup({
  maxClusterRadius: 120,
  iconCreateFunction: function (cluster) {
    return L.divIcon({html: '<b>' + cluster.getChildCount() + '</b>', className: 'mycluster', iconSize: L.point(40, 40)});
  }
})

var geolocData = {
  US : {country:"US", count:10, rate: {high: 3, medium: 4, low: 3}},
  IT : {country:"IT", count:4, rate: {high: 1, medium: 1, low: 2}}
}

for (key in geolocData){

  var latlng = retrieveLatLongFromCountryCode(key)
  var marker = new L.circleMarker(latlng, {stroke: false, className:'the-marker-class', fillOpacity: 1, color:'#00FF00', weight: 1})

  var popupChartOptions = {
    chart: {
      type: 'pieChart',
      height: 140,
      donut: true,
      donutRatio: 0.40,
      x: function(d) { return d.label },
      y: function(d) { return d.value },
      color: [
        '#2ecc71',
        '#f1c40f',
        '#e74c3c',
      ],
      valueFormat: d3.format(',.0d')
    }
  }
  var popupChartData = [{
    label: 'low',
    value: geolocData[key].rate.low
  }, {
    label: 'medium',
    value: geolocData[key].rate.medium
  }, {
    label: 'high',
    value: geolocData[key].rate.high
  }]

  marker.bindPopup('<nvd3 options="chartOptions" data="chartData"></nvd3>')
  markers.addLayers(marker)
}

map.addLayer(markers)

更新

我改变了一些东西。首先,我已经扩展了CircleMarker

var customCircleMarker = L.CircleMarker.extend({
  options: { 
    countrycode: '',
    rates: {},
    count: 0
  }
})

然后我在地图中使用此CustomCircleMarker

var marker = new customCircleMarker(latlng, {stroke: false, className: 'the-class-name', fillOpacity: 1, weight: 1})

var popupChartData = [{
    label: 'low',
    value: [geolocLoad[key].rate.low]
}, {
    label: 'medium',
    value: [geolocLoad[key].rate.medium]
}, {
    label: 'high',
    value: [geolocLoad[key].rate.high]
}]

然后我绑定弹出窗口,用我的自定义数据填充标记并创建一个on click回调,它会发出包含我有用数据的消息。

marker.bindPopup('<div id="chart-' + key + '"></div>')
marker.countrycode = key
marker.rates = popupChartData
marker.count = geolocLoad[key].count

marker.on('click', function(e){
  $scope.$emit('marker:click', this.countrycode, this.count, this.rates)
})

接收器将采用数据并以这种方式呈现图表:

$scope.$on('marker:click', function(caller, countrycode, count, rates){
  console.log('received', countrycode, count, rates)

  var width = 500,
      height = 500

  nv.addGraph(function(){
    var chart = nv.models.pieChart()
      .x(function(d) { return d.label })
      .y(function(d) { return d.value })
      .width(width)
      .height(height);

    d3.select("#chart-"+countrycode)
      .datum(rates)
      .attr('width', width)
      .attr('height', height)
      .call(chart);

    return chart;
  })
})

可悲的是,这并没有再次发挥作用.. not working again

注意:我没有使用angular-leaflet-directive,因为我发现它非常矫枉过正,并不喜欢它。你觉得使用它对我来说更好吗?

1 个答案:

答案 0 :(得分:1)

我自己解决了这个问题,我发布了一个答案,因为它可能会对未来的用户有所帮助。

我忘记的最重要的事情是在弹出窗口中插入一个<svg>元素,这导致图表没有被渲染,因为没有&#39;画布&#39;我们的图书馆可以渲染它..

标记生成:

var marker = new customCircleMarker(countries.names[c].latlng, {stroke: false, className: 'the-class-name', fillOpacity: 1, weight: 1})

marker.bindPopup('<div id="chart-' + key + '" class="country-popup-chart-container"><svg class="country-popup-chart"></svg></div>', {closeButton: false})
marker.countrycode = key
marker.rates = geolocLoad[key].rate
marker.count = geolocLoad[key].count

marker.on('click', function(e){
  $scope.$emit('marker:click', this.countrycode, this.count, this.rates)
})

$emit上调用click触发了图表生成:

$scope.$on('marker:click', function(caller, countrycode, count, rates) {

  var popupChartData = [{
    label: 'low',
    value: rates.low,
    color: '#2ecc71'
  }, {
    label: 'medium',
    value: rates.medium,
    color: '#f1c40f'
  }, {
    label: 'high',
    value: rates.high,
    color: '#e74c3c'
  }]

  nv.addGraph(function(){
    var chart = nv.models.pieChart()
      .x(function(d) { return d.label })
      .y(function(d) { return d.value })
      .showLabels(false)
      .donut(true)
      .donutRatio(0.5)

    d3.select('#chart-' + countrycode + ' svg')
      .datum(popupChartData)
      .call(chart)

    return chart
  })
}) 

使用以下CSS

进行调整
div.country-popup-chart-container{
  height: 80px;
  width: 200px;
}

最终结果是:

final result