Skip to content

Latest commit

 

History

History
68 lines (40 loc) · 1.61 KB

File metadata and controls

68 lines (40 loc) · 1.61 KB

Moving Journey Map

This is a combination of the Moving Map and the Journey map. It shows the entire journey, but also moves - it doesn't currently rotate.

It renders the journey at a given zoom level, moving the map to fit the current location

<component type="moving_journey_map" size="256" />

06-moving-journey-map-0.png

Sizing

<component type="moving_journey_map" size="128" />

06-moving-journey-map-1.png

<component type="moving_journey_map" size="384" />

06-moving-journey-map-2.png

Zoom

The zoom can be set with zoom - Very high levels of zoom might not work reliably for long journeys, or may move too quickly on the video.

<component type="moving_journey_map" size="256" zoom="11" />

06-moving-journey-map-3.png

<component type="moving_journey_map" size="256" zoom="14" />

06-moving-journey-map-4.png

Positioning, Transparency and Corners

The component should be placed in a translate to move it around the screen To make the component rounded or transparent, it can be placed in a frame

<translate x="20" y="20">
    <frame width="256" height="256" outline="255,0,0" opacity="0.6" cr="128">
        <component type="moving_journey_map" name="moving_map" size="256" zoom="16"/>
    </frame>
</translate>

06-moving-journey-map-5.png