| 744 | } |
| 745 | |
| 746 | QRectF Template::boundingRect() const |
| 747 | { |
| 748 | auto const extent = getTemplateExtent(); |
| 749 | auto rect = QRectF { templateToMap(extent.topLeft()), QSizeF{} }; |
| 750 | rectInclude(rect, templateToMap(extent.topRight())); |
| 751 | rectInclude(rect, templateToMap(extent.bottomRight())); |
| 752 | rectInclude(rect, templateToMap(extent.bottomLeft())); |
| 753 | return rect; |
| 754 | } |
| 755 | |
| 756 | void Template::scale(double factor, const MapCoord& center) |
| 757 | { |
no test coverage detected