Skip to main content

Layout

Before learning about layout...

Check out the Key Concepts.

A layout consists of declarative XML that defines an applications visual structure and data sources. Think of it as the blueprints on which a VertiGIS Studio Mobile Application is built.

Take this example of a layout with a map and a zoom widget.

app/layout-large.xml
<?xml version="1.0" encoding="utf-8" ?>
<layout xmlns="https://geocortex.com/layout/v1">
<map>
<zoom margin="0.5"/>
</map>
</layout>

The first thing it does is declare a <map> component that uses the default map configuration. Next, a zoom widget is embedded within the map. This does two things:

  1. Visually places the element inside the map
  2. Tells the zoom widget to act upon the map it is placed in
Want to follow along?

The basic example shown above will place a zoom widget inside a map. But what if you want the zoom widget to be in the top right corner? At the bottom center of the map? How does the map know where to place it?

Slotting

The position of a component within its parent is controlled by what slot it is placed into.

For example, this configuration will place the zoom widget in the top right of the map.

app/layout-large.xml
<?xml version="1.0" encoding="utf-8" ?>
<layout xmlns="https://geocortex.com/layout/v1">
<map>
<zoom padding="0.5" slot="top-right"/>
</map>
</layout>

If a slot configuration is not given, the component will slot itself into a default position. Each component defines its own slots - not every slot will work for every component.

tip

The Quickstart comes with a schema for the layout-*.xml files which can autocomplete slot values for a component

Slots control how one element fits into another. But how do we control how sibling elements position themselves? The answer is stacks and splits.

Stacks and Splits

The basic stack and split components are building blocks that layout authors can use to vertically or horizontally partition components and blocks of rich text to form simple and complex user interfaces alike.

For a deeper dive into stacks and splits, check out the layout reference.

Spacing

See presentation attributes for details on margin, padding, content organization and alignment in your layout.

Panels

Another core concept that VertiGIS Studio Mobile uses to organize elements in a layout is panels. Panels are a container component that enable hierarchal navigation between different components.

For a deeper dive into Panels, check out the layout reference.

tip

These are just a few examples of the building blocks available to help you organize the layout of your Application. Leveraging these simple primitives correctly also means responsive apps that work on various screen sizes. You can also use tabs, expanders, and much more. See the Component Reference for a full listing.

Device Form factors

VertiGIS Studio Mobile has built-in support for loading different layouts depending on the form factor of the target device. The three possible form factors are 'small', 'medium', and 'large'. The 'large' layout is intended to target desktop and laptop devices, the 'medium' layout is intended to target tablet devices, and the 'small' layout is intended to target phone devices. All three of these layouts are intended to target the same app config, allowing config to be shared when appropriate.

tip

The VertiGIS Studio Mobile SDK Quickstart includes a large and small layout.

In order for the correct layout to be loaded for the correct form factor, the layout needs to be loaded by the app config.

app/app.json
{
"schemaVersion": "1.0",
"items": [
{
"$type": "layout",
"id": "desktop-layout",
"url": "resource://layout-large.xml",
// highlight-next-line
"tags": [ "mobile", "large" ]
},
{
"$type": "layout",
"id": "tablet-layout",
"url": "resource://layout-medium.xml",
// highlight-next-line
"tags": [ "mobile", "medium" ]
},
...
]
}

This app config will load a large layout for a desktop device, and a medium layout for a tablet device.

Important

The Quickstart does not ship with a medium layout configured. See Add Medium Layout for instructions on how to do this.

Fallback Layouts

If a layout that matches the device form factor is not available, then VertiGIS Studio Mobile will attempt to load the layout with the most similar form factor. For the example above, if VertiGIS Studio Mobile was loaded on a phone device, layout-medium.xml would be loaded, as it is the closest form factor to small. If the medium layout was also missing, layout-large.xml would be loaded instead, and vice versa.

Namespaces

Every component in the xml file has a definition that lives in an xml namespace. All the components discussed to this point have lived in the https://geocortex.com/layout/v1 namespace.

<layout xmlns="https://geocortex.com/layout/v1">
<map/>
</layout>

VertiGIS Studio Mobile has a specific namespace https://geocortex.com/layout/mobile/v1 in which components like <gxm:taskbar> live. You can add this namespace to your layout to use these components.

<layout xmlns="https://geocortex.com/layout/v1"
xmlns:gxm="https://geocortex.com/layout/mobile/v1">
<gxm:taskbar orientation="vertical">
<map slot="main"/>
</gxm:taskbar>
</layout>

When adding custom components, you will need to add their custom namespace to your xml definition.

Relevant SDK Samples

The VertiGIS Studio Mobile SDK Samples project has a variety of layout configuration samples:

Next Steps: Components and App Config

In our examples so far, xml elements like <text> or <stack> have been used. Each of these xml elements corresponds to a Component in Mobile. Each component has its own configuration, such as the text property for <text> elements. Most components have required configuration, and this configuration is defined in an App, specifically, in the app.json file. This allows a separation of the visual structure of how components appear in the viewer, and the functional content these components host. Combining layouts with app configuration allows you to create powerful, flexible applications with different layouts for different form factors or use cases.

App Config

Learn about app configuration and its interaction with layout

Layout Reference

Learn more about what you can accomplish with layouts