1

在我的AngularJsWeb 应用程序中,我正在使用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}}
}

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

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

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

空弹出窗口


这就是我构建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]
}]

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

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;
  })
})

可悲的是,这不再起作用了.. 不再工作

注意:我没有使用 angular-leaflet-directive,因为我发现它有点矫枉过正并且不太喜欢它。你觉得我还是用它比较好?

4

1 回答 1

2

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

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

标记生成:

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通过调用 on触发图表生成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;
}

最终结果是:

最后结果

于 2016-05-27T09:17:28.863 回答