Manipulating the screen

Adding paths
- Above the map, click Add Path

To add a shape, click Add Polygon ![]()
To make a path or polygon into a 3D object, click Altitude.
- A “New Path” or “New Polygon” dialog will pop up. You may need to move it out of the way before moving on to the next step.
- To draw the line or shape you want, click a start point on the map and drag.
- Click an endpoint. Then, enter a description and properties.
- Click OK.
From <https://support.google.com/earth/answer/148072?hl=en>
Changing Paths
- Make sure you’re zoomed in to the line. Right click on the line you want to change and click on “Properties”.
- Hover over the line till you get to one of the markers.
- Pro Tip: if the line is red you can change the color to be able to see the individual points
- You can manipulate the marker now:
- Click and drag to move
- Click on any other part of the map to add a marker
- Right click to remove a marker
- You can go to the properties to change the color, width and opacity (transparency)
- Pro Tip: you use the transparency in the polygons because you want to be able to see through them
Description of Paths
This is an HTML description of the path. It uses XML to describe what is happening. You can imagine XML as un upside down tree.
To be able to read the XML lets use a text editor. Now there are several programs you can use:
- Internet Explorer (Edge)
- Google Chrome
- Notepad
- Notepad ++
I will be using Notepad ++ because it has autoformatting properties (it changes the colors).
To start lets close all the tags (alt+0)
This allows us to see the ROOT of the tree. The top of the file or the first branch.
Legend
- Open msPaint
- Resize to 300x200px
- Create the Legend
- Save as JPEG
- Go to Screen Overlay website to get this code
<ScreenOverlay>
<name>Legend: Wetlands</name>
<Icon>
<href>YourURL.html</href>
</Icon>
<overlayXY x="0" y="0" xunits="fraction" yunits="fraction"/>
<screenXY x="25" y="95" xunits="pixels" yunits="pixels"/>
<rotationXY x="0.5" y="0.5" xunits="fraction" yunits="fraction"/>
<size x="0" y="0" xunits="pixels" yunits="pixels"/>
</ScreenOverlay>
- Change the Name and href
- Copy the code and paste in the temporary folder
- Table = make a table
- Th= header
- Tr= table row
- Td = table cell
The other stuff is CSS (stuff to make it look pretty)
The /table means I ended the statement.

