Point Layers

From World Wind Wiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 04:25, 1 July 2005 (edit)
Nosilleg (Talk | contribs)
(creation)
← Previous diff
Revision as of 13:41, 3 July 2005 (edit) (undo)
Nosilleg (Talk | contribs)
(Added Tools)
Next diff →
Line 1: Line 1:
A '''Point Layer''' Add-On is based around a file and a file set. The file is the XML file that supplies all the location ond configuration data for the Add-On. The file set contains the images for the Add-On including the icon that is displayed in the toolbar. A '''Point Layer''' Add-On is based around a file and a file set. The file is the XML file that supplies all the location ond configuration data for the Add-On. The file set contains the images for the Add-On including the icon that is displayed in the toolbar.
-==XML File==+==Tools==
 +*[http://worldwind.cromsoft.org/index.php?to=tools/addons_creator/infos WW ACID] Add-on maker
 +*[[WINK Spots]] Add-On maker
 +==XML File==
Below is a sample from an Add-On which displays Federal Electorates in Australia. Below is a sample from an Add-On which displays Federal Electorates in Australia.
<pre> <pre>

Revision as of 13:41, 3 July 2005

A Point Layer Add-On is based around a file and a file set. The file is the XML file that supplies all the location ond configuration data for the Add-On. The file set contains the images for the Add-On including the icon that is displayed in the toolbar.

Contents

Tools

XML File

Below is a sample from an Add-On which displays Federal Electorates in Australia.

<?xml version="1.0" encoding="UTF-8"?>
<LayerSet Name="Australian Commonwealth Electorates" ShowOnlyOneLayer="false" ShowAtStartup="false"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="C:\WorldWind\bin\Debug\Configuration\EarthLayers\LayerSet.xsd">
  <Icon ShowAtStartup="true">
    <Name>Canberra</Name>
    <Description>Commonwealth Electorate</Description>
    <Latitude><Value>-35.569567</Value></Latitude>
    <Longitude><Value>148.998003</Value></Longitude>
    <DistanceAboveSurface>100</DistanceAboveSurface>
    <TextureFilePath>Add-ons\Earth\AustralianFederalElectorates\Icons\alp.png</TextureFilePath>
    <TextureWidthPixels>128</TextureWidthPixels>
    <TextureHeightPixels>128</TextureHeightPixels>
    <IconWidthPixels>42</IconWidthPixels>
    <IconHeightPixels>42</IconHeightPixels>
    <ClickableUrl>http://www.aec.gov.au/_content/who/profiles/profiles/c/canberra.htm</ClickableUrl>
  </Icon>
  <ExtendedInfomation>
    <ToolBarImage>Add-ons\Earth\AustralianFederalElectorates\Icons\CoatOfArms.png</ToolBarImage>
  </ExtendedInfomation>
</LayerSet>

Most of the tags above are fairly self explanatory (if you are having difficulty with XML see the W3C XML site). All the fields must be present otherwise World Wind will not be able to load the Add-On (and will throw an error during start-up).

For multiple points in your Add-On simply repeat the icon section.

  <Icon>
    ...
    ...
  </Icon>

File Placement

The XML file should be placed in the $WorldwindHome/Config/Earth/ folder (change Earth for the appropriate planet if necessary).

The file set should be at the location specified in the <ToolBarImage> and <TextureFilePath> tags.

See Also

Personal tools