setZoom: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Conversion script moved page SetZoom to setZoom: Converting page titles to lowercase)
No edit summary
 
Line 6: Line 6:


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
setZoom(z)
setZoom(z)
</source>
</syntaxhighlight>


'''Parameters'''
'''Parameters'''
Line 15: Line 15:
|examples=
|examples=
Zoom in by a factor 2
Zoom in by a factor 2
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: z = getZoom()]
[h: z = getZoom()]
[h: setZoom(2*z)]
[h: setZoom(2*z)]
</source>
</syntaxhighlight>
Zoom in by one 10%
Zoom in by one 10%
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: z = getZoom()]
[h: z = getZoom()]
[h: setZoom(z+0.1)]
[h: setZoom(z+0.1)]
</source>
</syntaxhighlight>
Zoom out by 10%
Zoom out by 10%
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: z = getZoom()]
[h: z = getZoom()]
[h: setZoom(z-0.1)]
[h: setZoom(z-0.1)]
</source>
</syntaxhighlight>


|also=
|also=

Latest revision as of 17:46, 14 March 2023

setZoom() Function

Introduced in version 1.4
Sets the zoom level of the viewport in percentages, where 1 (=100%) is the default.

Usage

setZoom(z)

Parameters

  • z - The zoom level of the viewport (the current zoom level can be seen at the bottom of the maptool screen. You can also use getZoom(). Note that this value is given in the numerical representation of %. E.g. to set zoom to 50% you give 0.5 as parameter.

Examples

Zoom in by a factor 2
[h: z = getZoom()]
[h: setZoom(2*z)]

Zoom in by one 10%

[h: z = getZoom()]
[h: setZoom(z+0.1)]

Zoom out by 10%

[h: z = getZoom()]
[h: setZoom(z-0.1)]

See Also