#region Disclaimer / License // Copyright (C) 2013, Jackie Ng // http://trac.osgeo.org/mapguide/wiki/maestro, jumpinjackie@gmail.com // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA // #endregion using OSGeo.MapGuide.ObjectModels.RuntimeMap; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace OSGeo.MapGuide.MaestroAPI.Commands { /// /// Describes the structure of an existing runtime map /// public interface IDescribeRuntimeMap : ICommand { /// /// The name of the runtime map to describe the structure of /// string Name { get; set; } /// /// A bitmask specifying what pieces of information to include in the CREATERUNTIMEMAP response /// int RequestedFeatures { get; set; } /// /// The number of icons to render inline (as base64 images) per scale range in each layer of the map /// int IconsPerScaleRange { get; set; } /// /// The icon image format (default: PNG) /// string IconFormat { get; set; } /// /// The width of each inline icon that will be rendered (default: 16) /// int IconWidth { get; set; } /// /// The height of each inline icon that will be rendered (default: 16) /// int IconHeight { get; set; } /// /// Executes the request and returns the structure of the runtime map /// /// The structure of the runtime map IRuntimeMapInfo Execute(); } }