⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reference.cs

📁 微软的行业应用解决方案示例
💻 CS
📖 第 1 页 / 共 5 页
字号:
    public partial class MapViewRepresentations {
        
        /// <remarks/>
        public ViewByScale ByScale;
        
        /// <remarks/>
        public ViewByHeightWidth ByHeightWidth;
        
        /// <remarks/>
        public ViewByBoundingRectangle ByBoundingRectangle;
    }
    
    /// <remarks/>
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public partial class ViewByScale : MapView {
        
        /// <remarks/>
        [System.ComponentModel.DefaultValueAttribute(0)]
        public double MapScale;
        
        /// <remarks/>
        public LatLong CenterPoint;
        
        public ViewByScale() {
            this.MapScale = 0;
        }
    }
    
    /// <remarks/>
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public partial class LatLong {
        
        /// <remarks/>
        [System.ComponentModel.DefaultValueAttribute(0)]
        public double Latitude;
        
        /// <remarks/>
        [System.ComponentModel.DefaultValueAttribute(0)]
        public double Longitude;
        
        public LatLong() {
            this.Latitude = 0;
            this.Longitude = 0;
        }
    }
    
    /// <remarks/>
    [System.Xml.Serialization.XmlIncludeAttribute(typeof(ViewByBoundingRectangle))]
    [System.Xml.Serialization.XmlIncludeAttribute(typeof(ViewByHeightWidth))]
    [System.Xml.Serialization.XmlIncludeAttribute(typeof(ViewByBoundingLocations))]
    [System.Xml.Serialization.XmlIncludeAttribute(typeof(ViewByScale))]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public abstract partial class MapView {
    }
    
    /// <remarks/>
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public partial class ViewByBoundingRectangle : MapView {
        
        /// <remarks/>
        public LatLongRectangle BoundingRectangle;
    }
    
    /// <remarks/>
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public partial class LatLongRectangle {
        
        /// <remarks/>
        public LatLong Southwest;
        
        /// <remarks/>
        public LatLong Northeast;
    }
    
    /// <remarks/>
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public partial class ViewByHeightWidth : MapView {
        
        /// <remarks/>
        [System.ComponentModel.DefaultValueAttribute(0)]
        public double Height;
        
        /// <remarks/>
        [System.ComponentModel.DefaultValueAttribute(0)]
        public double Width;
        
        /// <remarks/>
        public LatLong CenterPoint;
        
        public ViewByHeightWidth() {
            this.Height = 0;
            this.Width = 0;
        }
    }
    
    /// <remarks/>
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public partial class ViewByBoundingLocations : MapView {
        
        /// <remarks/>
        public Location[] Locations;
    }
    
    /// <remarks/>
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public partial class Location {
        
        /// <remarks/>
        public LatLong LatLong;
        
        /// <remarks/>
        public Entity Entity;
        
        /// <remarks/>
        public Address Address;
        
        /// <remarks/>
        public MapViewRepresentations BestMapView;
        
        /// <remarks/>
        public string DataSourceName;
    }
    
    /// <remarks/>
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public partial class Entity {
        
        /// <remarks/>
        public int ID;
        
        /// <remarks/>
        public string Name;
        
        /// <remarks/>
        public string DisplayName;
        
        /// <remarks/>
        public string TypeName;
        
        /// <remarks/>
        [System.Xml.Serialization.XmlArrayItemAttribute("Property")]
        public EntityPropertyValue[] Properties;
    }
    
    /// <remarks/>
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public partial class EntityPropertyValue {
        
        /// <remarks/>
        public string Name;
        
        /// <remarks/>
        public object Value;
    }
    
    /// <remarks/>
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public partial class Address {
        
        /// <remarks/>
        public string AddressLine;
        
        /// <remarks/>
        public string PrimaryCity;
        
        /// <remarks/>
        public string SecondaryCity;
        
        /// <remarks/>
        public string Subdivision;
        
        /// <remarks/>
        public string PostalCode;
        
        /// <remarks/>
        public string CountryRegion;
        
        /// <remarks/>
        public string FormattedAddress;
    }
    
    /// <remarks/>
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public partial class LineDriveMapOptions {
        
        /// <remarks/>
        public ImageFormat Format;
        
        /// <remarks/>
        [System.ComponentModel.DefaultValueAttribute(MapReturnType.ReturnImage)]
        public MapReturnType ReturnType;
        
        /// <remarks/>
        [System.ComponentModel.DefaultValueAttribute(MapFontSize.Smaller)]
        public MapFontSize FontSize;
        
        /// <remarks/>
        public PaletteType PaletteType;
        
        /// <remarks/>
        public string DestinationIconDataSource;
        
        /// <remarks/>
        public string DestinationIconName;
        
        public LineDriveMapOptions() {
            this.ReturnType = MapReturnType.ReturnImage;
            this.FontSize = MapFontSize.Smaller;
        }
    }
    
    /// <remarks/>
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public partial class ImageFormat {
        
        /// <remarks/>
        [System.ComponentModel.DefaultValueAttribute("image/gif")]
        public string MimeType;
        
        /// <remarks/>
        [System.ComponentModel.DefaultValueAttribute(240)]
        public int Height;
        
        /// <remarks/>
        [System.ComponentModel.DefaultValueAttribute(296)]
        public int Width;
        
        public ImageFormat() {
            this.MimeType = "image/gif";
            this.Height = 240;
            this.Width = 296;
        }
    }
    
    /// <remarks/>
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public enum MapReturnType {
        
        /// <remarks/>
        ReturnImage,
        
        /// <remarks/>
        ReturnUrl,
        
        /// <remarks/>
        ReturnSecureUrl,
    }
    
    /// <remarks/>
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public enum MapFontSize {
        
        /// <remarks/>
        Smallest,
        
        /// <remarks/>
        Smaller,
        
        /// <remarks/>
        Medium,
        
        /// <remarks/>
        Larger,
        
        /// <remarks/>
        Largest,
    }
    
    /// <remarks/>
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public enum PaletteType {
        
        /// <remarks/>
        Color,
        
        /// <remarks/>
        GrayScale,
        
        /// <remarks/>
        Monochrome,
    }
    
    /// <remarks/>
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public partial class LineDriveMapSpecification {
        
        /// <remarks/>
        public Route Route;
        
        /// <remarks/>
        public LineDriveMapOptions Options;
    }
    
    /// <remarks/>
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://s.mappoint.net/mappoint-30/")]
    public partial class Route {
        
        /// <remarks/>
        public RouteSpecification Specification;
        
        /// <remarks/>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -