亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? qgswmsprovider.cpp

?? 一個非常好的GIS開源新版本
?? CPP
?? 第 1 頁 / 共 5 頁
字號:
  QgsDebugMsg("exiting.");}void QgsWmsProvider::parseCapability(QDomElement const & e, QgsWmsCapabilityProperty& capabilityProperty){  QgsDebugMsg("entering.");  QDomNode n1 = e.firstChild();  while( !n1.isNull() ) {      QDomElement e1 = n1.toElement(); // try to convert the node to an element.      if( !e1.isNull() ) {          //QgsDebugMsg("  "  + e1.tagName() ); // the node really is an element.                if (e1.tagName() == "Request")          {            parseRequest(e1, capabilityProperty.request);          }          else if (e1.tagName() == "Layer")          {            parseLayer(e1, capabilityProperty.layer);          }            }      n1 = n1.nextSibling();  }      QgsDebugMsg("exiting.");}void QgsWmsProvider::parseContactPersonPrimary(QDomElement const & e, QgsWmsContactPersonPrimaryProperty& contactPersonPrimaryProperty){  QgsDebugMsg("entering.");  QDomNode n1 = e.firstChild();  while( !n1.isNull() ) {      QDomElement e1 = n1.toElement(); // try to convert the node to an element.      if( !e1.isNull() ) {          if      (e1.tagName() == "ContactPerson")          {            contactPersonPrimaryProperty.contactPerson = e1.text();          }          else if (e1.tagName() == "ContactOrganization")          {            contactPersonPrimaryProperty.contactOrganization = e1.text();          }      }      n1 = n1.nextSibling();  }  QgsDebugMsg("exiting.");}void QgsWmsProvider::parseContactAddress(QDomElement const & e, QgsWmsContactAddressProperty& contactAddressProperty){  QgsDebugMsg("entering.");  QDomNode n1 = e.firstChild();  while( !n1.isNull() ) {      QDomElement e1 = n1.toElement(); // try to convert the node to an element.      if( !e1.isNull() ) {          if      (e1.tagName() == "AddressType")          {            contactAddressProperty.addressType = e1.text();          }          else if (e1.tagName() == "Address")          {            contactAddressProperty.address = e1.text();          }          else if (e1.tagName() == "City")          {            contactAddressProperty.city = e1.text();          }          else if (e1.tagName() == "StateOrProvince")          {            contactAddressProperty.stateOrProvince = e1.text();          }          else if (e1.tagName() == "PostCode")          {            contactAddressProperty.postCode = e1.text();          }          else if (e1.tagName() == "Country")          {            contactAddressProperty.country = e1.text();          }      }      n1 = n1.nextSibling();  }  QgsDebugMsg("exiting.");}void QgsWmsProvider::parseContactInformation(QDomElement const & e, QgsWmsContactInformationProperty& contactInformationProperty){  QgsDebugMsg("entering.");  QDomNode n1 = e.firstChild();  while( !n1.isNull() ) {      QDomElement e1 = n1.toElement(); // try to convert the node to an element.      if( !e1.isNull() ) {          if      (e1.tagName() == "ContactPersonPrimary")          {            parseContactPersonPrimary(e1, contactInformationProperty.contactPersonPrimary);          }          else if (e1.tagName() == "ContactPosition")          {            contactInformationProperty.contactPosition = e1.text();          }          else if (e1.tagName() == "ContactAddress")          {            parseContactAddress(e1, contactInformationProperty.contactAddress);          }          else if (e1.tagName() == "ContactVoiceTelephone")          {            contactInformationProperty.contactVoiceTelephone = e1.text();          }          else if (e1.tagName() == "ContactFacsimileTelephone")          {            contactInformationProperty.contactFacsimileTelephone = e1.text();          }          else if (e1.tagName() == "ContactElectronicMailAddress")          {            contactInformationProperty.contactElectronicMailAddress = e1.text();          }      }      n1 = n1.nextSibling();  }  QgsDebugMsg("exiting.");}void QgsWmsProvider::parseOnlineResource(QDomElement const & e, QgsWmsOnlineResourceAttribute& onlineResourceAttribute){  QgsDebugMsg("entering.");  onlineResourceAttribute.xlinkHref = e.attribute("xlink:href");  QgsDebugMsg("exiting.");}void QgsWmsProvider::parseKeywordList(QDomElement  const & e, QStringList& keywordListProperty){  QgsDebugMsg("entering.");  QDomNode n1 = e.firstChild();  while( !n1.isNull() ) {      QDomElement e1 = n1.toElement(); // try to convert the node to an element.      if( !e1.isNull() ) {          if (e1.tagName() == "Keyword")          {            QgsDebugMsg("      Keyword.");             keywordListProperty += e1.text();          }      }      n1 = n1.nextSibling();  }  QgsDebugMsg("exiting.");}void QgsWmsProvider::parseGet(QDomElement const & e, QgsWmsGetProperty& getProperty){  QgsDebugMsg("entering.");  QDomNode n1 = e.firstChild();  while( !n1.isNull() ) {      QDomElement e1 = n1.toElement(); // try to convert the node to an element.      if( !e1.isNull() ) {          if      (e1.tagName() == "OnlineResource")          {            QgsDebugMsg("      OnlineResource.");            parseOnlineResource(e1, getProperty.onlineResource);          }      }      n1 = n1.nextSibling();  }  QgsDebugMsg("exiting.");}void QgsWmsProvider::parsePost(QDomElement const & e, QgsWmsPostProperty& postProperty){  QgsDebugMsg("entering.");  QDomNode n1 = e.firstChild();  while( !n1.isNull() ) {      QDomElement e1 = n1.toElement(); // try to convert the node to an element.      if( !e1.isNull() ) {          if (e1.tagName() == "OnlineResource")          {            QgsDebugMsg("      OnlineResource.");            parseOnlineResource(e1, postProperty.onlineResource);          }      }      n1 = n1.nextSibling();  }  QgsDebugMsg("exiting.");}void QgsWmsProvider::parseHttp(QDomElement const & e, QgsWmsHttpProperty& httpProperty){  QgsDebugMsg("entering.");  QDomNode n1 = e.firstChild();  while( !n1.isNull() ) {      QDomElement e1 = n1.toElement(); // try to convert the node to an element.      if( !e1.isNull() ) {          if      (e1.tagName() == "Get")          {            QgsDebugMsg("      Get.");            parseGet(e1, httpProperty.get);          }          else if (e1.tagName() == "Post")          {            QgsDebugMsg("      Post.");            parsePost(e1, httpProperty.post);          }      }      n1 = n1.nextSibling();  }  QgsDebugMsg("exiting.");}void QgsWmsProvider::parseDcpType(QDomElement const & e, QgsWmsDcpTypeProperty& dcpType){  QgsDebugMsg("entering.");  QDomNode n1 = e.firstChild();  while( !n1.isNull() ) {      QDomElement e1 = n1.toElement(); // try to convert the node to an element.      if( !e1.isNull() ) {          if (e1.tagName() == "HTTP")          {            QgsDebugMsg("      HTTP.");             parseHttp(e1, dcpType.http);          }      }      n1 = n1.nextSibling();  }  QgsDebugMsg("exiting.");}void QgsWmsProvider::parseOperationType(QDomElement const & e, QgsWmsOperationType& operationType){  QgsDebugMsg("entering.");  QDomNode n1 = e.firstChild();  while( !n1.isNull() ) {      QDomElement e1 = n1.toElement(); // try to convert the node to an element.      if( !e1.isNull() ) {          if      (e1.tagName() == "Format")          {            QgsDebugMsg("      Format.");             operationType.format += e1.text();          }          else if (e1.tagName() == "DCPType")          {            QgsDebugMsg("      DCPType.");            QgsWmsDcpTypeProperty dcp;            parseDcpType(e1, dcp);            operationType.dcpType.push_back(dcp);          }      }      n1 = n1.nextSibling();  }  QgsDebugMsg("exiting.");}void QgsWmsProvider::parseRequest(QDomElement const & e, QgsWmsRequestProperty& requestProperty){  QgsDebugMsg("entering.");  QDomNode n1 = e.firstChild();  while( !n1.isNull() ) {      QDomElement e1 = n1.toElement(); // try to convert the node to an element.      if( !e1.isNull() ) {          if (e1.tagName() == "GetMap")          {            QgsDebugMsg("      GetMap.");             parseOperationType(e1, requestProperty.getMap);          }          else if (e1.tagName() == "GetFeatureInfo")          {            QgsDebugMsg("      GetFeatureInfo.");            parseOperationType(e1, requestProperty.getFeatureInfo);          }      }      n1 = n1.nextSibling();  }  QgsDebugMsg("exiting.");}void QgsWmsProvider::parseLegendUrl(QDomElement const & e, QgsWmsLegendUrlProperty& legendUrlProperty){  QgsDebugMsg("entering.");  legendUrlProperty.width  = e.attribute("width").toUInt();  legendUrlProperty.height = e.attribute("height").toUInt();  QDomNode n1 = e.firstChild();  while( !n1.isNull() ) {      QDomElement e1 = n1.toElement(); // try to convert the node to an element.      if( !e1.isNull() ) {          if      (e1.tagName() == "Format")          {            legendUrlProperty.format = e1.text();          }          else if (e1.tagName() == "OnlineResource")          {            parseOnlineResource(e1, legendUrlProperty.onlineResource);          }      }      n1 = n1.nextSibling();  }  QgsDebugMsg("exiting.");}void QgsWmsProvider::parseStyle(QDomElement const & e, QgsWmsStyleProperty& styleProperty){//  QgsDebugMsg("entering.");  QDomNode n1 = e.firstChild();  while( !n1.isNull() ) {      QDomElement e1 = n1.toElement(); // try to convert the node to an element.      if( !e1.isNull() ) {          if (e1.tagName() == "Name")          {            styleProperty.name = e1.text();          }          else if (e1.tagName() == "Title")          {            styleProperty.title = e1.text();          }          else if (e1.tagName() == "Abstract")          {            styleProperty.abstract = e1.text();          }          else if (e1.tagName() == "LegendURL")          {            // TODO          }          else if (e1.tagName() == "StyleSheetURL")          {            // TODO          }          else if (e1.tagName() == "StyleURL")          {            // TODO          }      }      n1 = n1.nextSibling();  }//  QgsDebugMsg("exiting.");}void QgsWmsProvider::parseLayer(QDomElement const & e, QgsWmsLayerProperty& layerProperty,                                QgsWmsLayerProperty *parentProperty){//  QgsDebugMsg("entering.");// TODO: Delete this stanza completely, depending on success of "Inherit things into the sublayer" below.//  // enforce WMS non-inheritance rules//  layerProperty.name =        QString::null;//  layerProperty.title =       QString::null;//  layerProperty.abstract =    QString::null;//  layerProperty.keywordList.clear();  // assume true until we find a child layer  bool atleaf = TRUE;  layerProperty.queryable   = e.attribute("queryable").toUInt();  layerProperty.cascaded    = e.attribute("cascaded").toUInt();  layerProperty.opaque      = e.attribute("opaque").toUInt();  layerProperty.noSubsets   = e.attribute("noSubsets").toUInt();  layerProperty.fixedWidth  = e.attribute("fixedWidth").toUInt();  layerProperty.fixedHeight = e.attribute("fixedHeight").toUInt();  QDomNode n1 = e.firstChild();  while( !n1.isNull() ) {      QDomElement e1 = n1.toElement(); // try to convert the node to an element.      if( !e1.isNull() ) {          //QgsDebugMsg("    "  + e1.tagName() ); // the node really is an element.          if      (e1.tagName() == "Layer")          {//            QgsDebugMsg("      Nested layer.");             QgsWmsLayerProperty subLayerProperty;            // Inherit things into the sublayer            //   Ref: 7.2.4.8 Inheritance of layer properties            subLayerProperty.style                    = layerProperty.style;            subLayerProperty.crs                      = layerProperty.crs;            subLayerProperty.boundingBox              = layerProperty.boundingBox;            subLayerProperty.ex_GeographicBoundingBox = layerProperty.ex_GeographicBoundingBox;            // TODO            parseLayer(e1, subLayerProperty, &layerProperty );            layerProperty.layer.push_back(subLayerProperty);            atleaf = FALSE;          }          else if (e1.tagName() == "Name")          {            layerProperty.name = e1.text();          }          else if (e1.tagName() == "Title")          {            layerProperty.title = e1.text();          }          else if (e1.tagName() == "Abstract")          {            layerProperty.abstract = e1.text();          }          else if (e1.tagName() == "KeywordList")          {            parseKeywordList(e1, layerProperty.keywordList);          }          else if (e1.tagName() == "CRS")          {            layerProperty.crs.push_back(e1.text());          }          else if (e1.tagName() == "SRS")        // legacy from earlier versions of WMS          {            // SRS can contain several definitions separated by whitespace

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人自拍视频在线| 日本一区二区免费在线| 91麻豆福利精品推荐| 高清在线成人网| 国产精品亚洲午夜一区二区三区| 蜜臀av性久久久久av蜜臀妖精| 婷婷国产v国产偷v亚洲高清| 亚洲图片一区二区| 亚洲激情男女视频| 亚洲九九爱视频| 一区2区3区在线看| 亚洲宅男天堂在线观看无病毒| 亚洲一区二区三区视频在线播放 | 国产精品久久久久四虎| 国产亚洲一二三区| 国产精品伦理在线| 日韩一区欧美小说| 亚洲乱码国产乱码精品精小说 | 亚洲国产你懂的| 亚洲成人激情综合网| 天天综合日日夜夜精品| 免费在线观看一区| 国产美女久久久久| 成人精品免费网站| 91丨porny丨中文| 欧美日韩一区二区三区四区| 欧美精品欧美精品系列| 欧美一区二区三区在| 精品国产制服丝袜高跟| 国产日韩精品一区二区三区在线| 中文字幕中文乱码欧美一区二区| 亚洲视频一二三| 日韩精品成人一区二区三区| 麻豆国产91在线播放| 国产乱子轮精品视频| 成人app在线观看| 在线看不卡av| 日韩久久免费av| 国产精品久久精品日日| 亚洲福利一区二区| 韩国v欧美v亚洲v日本v| 91亚洲永久精品| 欧美精选一区二区| 久久精品在这里| 亚洲精品国产无天堂网2021 | 国产福利精品一区| 91丨九色porny丨蝌蚪| 欧美一区二区大片| 日本一区二区三区电影| 亚洲国产日日夜夜| 狠狠狠色丁香婷婷综合激情| 99精品久久只有精品| 欧美日韩不卡在线| 中文字幕欧美激情| 丝袜亚洲另类欧美| 成人国产一区二区三区精品| 91精品视频网| 国产精品欧美一区二区三区| 日日嗨av一区二区三区四区| 国产成a人亚洲| 欧美日韩亚洲高清一区二区| 国产日韩欧美a| 婷婷中文字幕综合| 成人一区二区三区| 日韩欧美你懂的| 亚洲一区二区三区视频在线| 国产在线精品不卡| 欧美在线观看视频在线| 欧美激情一区二区三区在线| 亚洲一区二区精品3399| 国产成人在线视频网站| 91超碰这里只有精品国产| 国产精品成人在线观看| 麻豆国产精品官网| 欧美日韩一级二级三级| 最新国产精品久久精品| 韩国毛片一区二区三区| 欧美一区二区人人喊爽| 亚洲视频免费在线| 国产成人精品一区二区三区四区 | 在线观看日韩av先锋影音电影院| 国产亚洲欧美激情| 六月丁香婷婷久久| 欧美日韩一区在线观看| 亚洲蜜臀av乱码久久精品| 高清成人在线观看| 精品日本一线二线三线不卡| 亚洲成av人片一区二区| 色吊一区二区三区| 中文字幕制服丝袜成人av| 国产一区二区三区国产| 日韩精品一区二区三区视频在线观看| 亚洲一区在线电影| 在线一区二区视频| 综合久久久久久| 懂色中文一区二区在线播放| 久久婷婷综合激情| 麻豆91精品视频| 欧美一区二区三区影视| 婷婷国产在线综合| 欧美人体做爰大胆视频| 亚洲影院久久精品| 欧美自拍丝袜亚洲| 亚洲精品国产一区二区三区四区在线| av网站一区二区三区| 国产精品美女一区二区三区| 成人激情动漫在线观看| 中文字幕av不卡| 不卡的看片网站| 亚洲欧美综合色| 色综合网站在线| 亚洲婷婷在线视频| 91片在线免费观看| 亚洲最大的成人av| 欧美午夜精品免费| 午夜成人在线视频| 91精品久久久久久久久99蜜臂| 日韩精品一二三四| 欧美大黄免费观看| 国产一区二区在线电影| 国产欧美日韩激情| 99久久伊人网影院| 亚洲免费在线看| 欧美日韩一区不卡| 久久成人久久爱| 中文一区二区完整视频在线观看| 成人一区二区三区视频| 亚洲欧美日韩中文字幕一区二区三区| 色综合久久88色综合天天| 亚洲自拍偷拍图区| 日韩亚洲欧美中文三级| 国产一区激情在线| 亚洲欧洲美洲综合色网| 91国偷自产一区二区三区成为亚洲经典 | 国产尤物一区二区| 国产精品久久午夜夜伦鲁鲁| 在线这里只有精品| 青青草91视频| 国产日韩av一区| 91久久久免费一区二区| 亚洲va天堂va国产va久| 精品av综合导航| gogo大胆日本视频一区| 午夜一区二区三区视频| 日韩一区二区三区观看| 国产99精品在线观看| 亚洲国产一区视频| 久久人人97超碰com| 91在线视频播放| 亚洲chinese男男1069| 久久久国产精品午夜一区ai换脸| 色综合久久久久综合体| 日本v片在线高清不卡在线观看| 国产亚洲一本大道中文在线| 在线国产电影不卡| 国产原创一区二区三区| 一区二区欧美精品| 精品国产乱码久久久久久免费| 成人免费黄色在线| 日韩电影在线看| 中文字幕中文乱码欧美一区二区| 在线不卡中文字幕播放| 不卡一区二区中文字幕| 捆绑变态av一区二区三区| 亚洲婷婷在线视频| 欧美刺激午夜性久久久久久久| 97久久精品人人爽人人爽蜜臀| 青椒成人免费视频| 一区二区三区久久久| 久久人人爽人人爽| 欧美久久一区二区| 97久久精品人人澡人人爽| 国内不卡的二区三区中文字幕| 亚洲永久免费av| 国产精品理论片| 精品久久久久久久久久久久久久久 | 久久精品99国产精品日本| 日韩一区在线免费观看| 亚洲精品一区二区在线观看| 欧美色图一区二区三区| 成人av在线影院| 国产综合色视频| 免费在线观看一区二区三区| 亚洲午夜在线视频| 国产精品国产a| 久久久久久**毛片大全| 日韩精品一区二区三区三区免费| 欧美色中文字幕| 在线视频你懂得一区| 波多野结衣在线aⅴ中文字幕不卡| 精品影院一区二区久久久| 一区二区三区四区激情 | 精品无人码麻豆乱码1区2区| 偷窥少妇高潮呻吟av久久免费| 亚洲精品成人精品456| 中文字幕av一区二区三区免费看 | 日韩精品久久理论片| 亚洲最大的成人av| 亚洲精品欧美二区三区中文字幕| 国产日韩精品一区二区三区在线|