@Override
  public void accept(PainterVisitor visitor, Object group, Bbox bounds, boolean recursive) {
    map.getVectorContext().drawGroup(group, this);
    adjustScale(map.getMapModel().getMapView().getCurrentScale());
    // Draw a dummy at 0,0 so that Internet Explorer knows where coordinate 0,0 is. If this is not
    // drawn, the text
    // will disappear, because the parent group will have coordinate 0,0 at the upper left corner of
    // the union of
    // all the rectangles that are drawn here.
    map.getVectorContext()
        .drawRectangle(this, dummy.getId(), dummy.getBounds(), (ShapeStyle) dummy.getStyle());

    map.getVectorContext()
        .drawRectangle(this, backGround.getId(), backGround.getBounds(), backGround.getStyle());
    map.getVectorContext()
        .drawRectangle(this, bottomLine.getId(), bottomLine.getBounds(), bottomLine.getStyle());
    map.getVectorContext()
        .drawRectangle(this, leftMarker.getId(), leftMarker.getBounds(), leftMarker.getStyle());
    map.getVectorContext()
        .drawRectangle(this, rightMarker.getId(), rightMarker.getBounds(), rightMarker.getStyle());
    map.getVectorContext()
        .drawText(
            this,
            distance.getId(),
            distance.getContent(),
            distance.getPosition(),
            distance.getStyle());
  }