@@ -33,7 +33,7 @@ class QgsScaleRangeWidget : QWidget
33
33
34
34
double minimumScale() const;
35
35
%Docstring
36
- Returns the selected minimum scale, or 0 if minimum scale is not set.
36
+ Returns the selected minimum scale (i.e. most "zoomed out" scale) , or 0 if minimum scale is not set.
37
37
The scale value indicates the scale denominator, e.g. 1000.0 for a 1:1000 map.
38
38
.. seealso:: maximumScale()
39
39
.. seealso:: setMinimumScale()
@@ -42,7 +42,7 @@ class QgsScaleRangeWidget : QWidget
42
42
43
43
double maximumScale() const;
44
44
%Docstring
45
- Returns the selected maximum scale, or 0 if maximum scale is not set.
45
+ Returns the selected maximum scale (i.e. most "zoomed in" scale) , or 0 if maximum scale is not set.
46
46
The scale value indicates the scale denominator, e.g. 1000.0 for a 1:1000 map.
47
47
.. seealso:: minimumScale()
48
48
.. seealso:: setMaximumScale()
@@ -58,7 +58,7 @@ class QgsScaleRangeWidget : QWidget
58
58
59
59
void setMinimumScale( double scale );
60
60
%Docstring
61
- Set the minimum ``scale``, or 0 to indicate the minimum is not set.
61
+ Set the minimum ``scale`` (i.e. most "zoomed out" scale) , or 0 to indicate the minimum is not set.
62
62
The scale value indicates the scale denominator, e.g. 1000.0 for a 1:1000 map.
63
63
.. seealso:: minimumScale()
64
64
.. seealso:: setMaximumScale()
@@ -67,7 +67,7 @@ class QgsScaleRangeWidget : QWidget
67
67
68
68
void setMaximumScale( double scale );
69
69
%Docstring
70
- Set the maximum ``scale``, or 0 to indicate the minimum is not set.
70
+ Set the maximum ``scale`` (i.e. most "zoomed in" scale) , or 0 to indicate the minimum is not set.
71
71
The scale value indicates the scale denominator, e.g. 1000.0 for a 1:1000 map.
72
72
.. seealso:: maximumScale()
73
73
.. seealso:: setMinimumScale()
@@ -76,7 +76,7 @@ class QgsScaleRangeWidget : QWidget
76
76
77
77
void setScaleRange( double min, double max );
78
78
%Docstring
79
- Sets the scale range, from ``min`` scale to ``max`` scale.
79
+ Sets the scale range, from ``min`` scale (i.e. most "zoomed out" scale) to ``max`` scale (most "zoomed in" scale) .
80
80
The scale values indicates the scale denominator, e.g. 1000.0 for a 1:1000 map,
81
81
or 0 to indicate not set.
82
82
.. seealso:: setMinimumScale()
0 commit comments