this.polygon = this.svg.append('g')
      .attr('class', 'polygons')
      .selectAll('path')
      .data(this.voronoi.polygons(this.sites))
      .enter().append('path')