<?php

class MarkupCommand
{
    const CreateSdf     = 1;
    const CreateShp     = 2;
    const CreateSqlite  = 3;
    const Open          = 4;
    const Delete        = 5;
    const Refresh       = 6;
    const Edit          = 7;
    const Close         = 8;
    const Download      = 9;
    const Upload        = 10;
    const EditStyle     = 11;
    const DownloadDataFromLayer = 12;
    const DownloadLayerKml = 13;
    const DownloadLayerKmz = 14;
}

?>