本文整理汇总了C#中IConfiguration.Initialize方法的典型用法代码示例。如果您正苦于以下问题:C# IConfiguration.Initialize方法的具体用法?C# IConfiguration.Initialize怎么用?C# IConfiguration.Initialize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IConfiguration
的用法示例。
在下文中一共展示了IConfiguration.Initialize方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Setup
public void Setup()
{
_configuration = new Configuration();
_configuration.Initialize();
}
示例2: BruTileLayer
/// <summary>
/// Creates an instanc of this class using the given <paramref name="configuration"/>
/// </summary>
/// <param name="configuration">The configuration</param>
public BruTileLayer(IConfiguration configuration)
{
if (configuration == null)
throw new ArgumentNullException("configuration");
var data = base.ContextMenuItems.Find(m => m.Name == "Data");
if (data != null) base.ContextMenuItems.Remove(data);
/*
data = base.ContextMenuItems.Find(m => m.Name.StartsWith("Attrib"));
if (data != null) base.ContextMenuItems.Remove(data);
*/
// Initialize the configuration prior to usage
configuration.Initialize();
//
_configuration = configuration;
var tileSource = configuration.TileSource;
_projectionInfo = AuthorityCodeHandler.Instance[tileSource.Schema.Srs];
if (_projectionInfo == null)
_projectionInfo = AuthorityCodeHandler.Instance["EPSG:3857"];
// WebMercator: set datum to WGS1984 for better accuracy
if (tileSource.Schema.Srs == "EPSG:3857") _projectionInfo.GeographicInfo.Datum = KnownCoordinateSystems.Geographic.World.WGS1984.GeographicInfo.Datum;
Projection = _projection;
var extent = tileSource.Schema.Extent;
MyExtent = new Extent(extent.MinX, extent.MinY, extent.MaxX, extent.MaxY);
base.LegendText = configuration.LegendText;
base.LegendItemVisible = true;
base.IsVisible = base.Checked = true;
base.LegendSymbolMode = SymbolMode.Symbol;
LegendType = LegendType.Custom;
_tileFetcher = configuration.TileFetcher;
_tileFetcher.TileReceived += HandleTileReceived;
_tileFetcher.QueueEmpty += HandleQueueEmpty;
//Set the wrap mode
_imageAttributes = new ImageAttributes();
_imageAttributes.SetWrapMode(WrapMode.TileFlipXY);
}