Popovers
Profiles are great for including detailed background information about what you’re mapping. But sometimes they can be a bit overkill, and they do take up a lot of precious screen space. Sometimes you want to share just a little bit more context about an element or connection without having to open the profile.
Popovers allow you to display fields from the profiles when someone hovers over an element, connection, or loop.
When you're editing the map, the direct decorations toolbar will hide popovers.
However, anyone who has view-only access to the map or is viewing a presentation or a shared/embedded map will still see your popovers (the direct decorations toolbar is hidden for them, since they can't make edits to your map).
If you're building popovers and want to see how they look before you publish, you can either follow the instructions in the direct decorations guide to turn off the direct decorations toolbar, or simply click the ellipsis icon in the bottom right corner and select "Switch to preview mode".
Basic popover syntax
Popovers are added through the Advanced Editor, using a simple syntax.
Replace selector
with any valid selector, and replace Field name
with the name of any of your fields. Remember to wrap each field name in double curly brackets {{}}
and wrap the entire popover value in double quotes.
For example, here is the code for an element popover that includes the label and element type:
When using the Type field in popovers, you need to specify whether it is Element Type, Connection Type, or Loop Type. For example, use {{connection type}}
when adding Type to a connection's popover.
Using markdown to style the popover
You can use markdown to add italics, bold text, videos, and more to your popover. You can also add double spaces to create line breaks.
Here's a popover that uses markdown to style the label, add a horizontal rule, and add line breaks in between the fields:
Note that popovers automatically recognize images, so there's no need to style those with markdown. This works with hyperlinks as well—just use something like {{website}}
or {{image}}
in your popover, and the popover will render it properly.
Popovers also recognize multi-pick fields (like Tags) and will render them as bulleted lists.
Resizing the popover
Kumu sets default popover sizes based on how much content is in each popover, but you can override these defaults using the popover-height
, popover-width
, and popover-padding
properties. height
and width
control the vertical and horizontal size of the popover box, and padding
controls the space between the edge of the popover and its contents.
Good to know:
popover-width
is a great tool if you want to set a maximum width for images that you want to include in the popover. Kumu will resize the image to fit yourpopover-width
without stretching or distorting the image.If the height of your content exceeds your
popover-height
, Kumu will add a vertical scroll bar to your popover.
Use cases
Here are just a few cases where we think popovers are useful!
Show connection labels on demand
Sometimes you want to use connection labels to add information (such as role or nature of a relationship) but don’t want those showing up on the map all the time. In that case, just add the following:
Bring the profile into the popover
The profile is great when you have a lot of information in the description as well as a number of fields. But when you only have one or two fields, sometimes it is easier to disable the profile and just use popovers instead.
Our first step is to disable the profile for everything on the map:
We can then activate the popover for all elements and connections:
Highlight key facts and figures
Ever sized elements or connections based on a quantitative data, but didn’t want people to have to dig through the profile to find the number? Use popovers to display those values instead:
Last updated