Skip to content

Instantly share code, notes, and snippets.

@barnaclebarnes
Created October 21, 2010 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barnaclebarnes/639064 to your computer and use it in GitHub Desktop.
Save barnaclebarnes/639064 to your computer and use it in GitHub Desktop.
TourML Asset Format
//Current
<tourml:Asset tourml:id="icon-1" xsi:type="tourml:ImageAssetType" tourml:width="32" tourml:height="32">
<tourml:Source tourml:uri="./images/icon1.jpg" tourml:format="image/jpg" />
</tourml:Asset>
//New
<tourml:Asset tourml:id="icon-1" xsi:type="tourml:ImageAssetType">
<tourml:Source tourml:uri="./images/icon1.jpg" tourml:format="image/jpg" tourml:width="512" tourml:height="512" tourml:type="original" />
<tourml:Source tourml:uri="./images/icon1.jpg" tourml:format="image/jpg" tourml:width="32" tourml:height="32" tourml:type="thumbnail" />
<tourml:Source tourml:uri="./images/icon1.jpg" tourml:format="image/jpg" tourml:width="64" tourml:height="64" tourml:type="display" />
</tourml:Asset>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment