ListShowInfoWindowZoom

Version: - integer  

Summary

Returns the zoom level which defines the resolution of the info window.

Settings

The value is based on the Info window zoom level​ field in the paragraph module settings.

(Page - Paragraph - Module - Location list settings - Info window zoom level​)

Remarks

The Zoom level can be set between 0 (the lowest zoom level, in which the entire world can be seen on one map) and 19 (down to streets and individual buildings).

Examples

Outputting the template tag

@GetInteger("ListShowInfoWindowZoom")

Check if tag has a value

@if(!int.IsNullOrWhiteSpace(GetInteger("ListShowInfoWindowZoom"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ int storedTag = GetInteger("ListShowInfoWindowZoom"); }

Outputting the template tag

<!--@ListShowInfoWindowZoom-->

Check if integer has a value

<!--@If Defined(@ListShowInfoWindowZoom)--> Let's output this tag here: <strong><!--@ListShowInfoWindowZoom--></strong> <!--@EndIf(@ListShowInfoWindowZoom)-->