SuperMap.Connector.Map.Map C# (CSharp) Method

Map() public method

构造函数。
参数 serviceUrl 为空时抛出异常。
public Map ( string serviceUrl ) : System
serviceUrl string SuperMap iServer 地图服务组件的URL地址。
return System
        public Map(string serviceUrl)
        {
            if (string.IsNullOrEmpty(serviceUrl))
            {
                throw new ArgumentNullException("serviceUrl", "serivceUrl is null");
            }
            if (serviceUrl.Trim().EndsWith("/"))
            {
                int lastLocation = serviceUrl.LastIndexOf("/");
                if (lastLocation >= 0)
                {
                    serviceUrl = serviceUrl.Substring(0, lastLocation);
                }
            }
            this._serviceUrl = serviceUrl;
            this._mapProvider = new MapProvider(this._serviceUrl);
        }