本文整理汇总了Python中qgis.core.QgsGeoNodeConnection.addWmsConnectionSettings方法的典型用法代码示例。如果您正苦于以下问题:Python QgsGeoNodeConnection.addWmsConnectionSettings方法的具体用法?Python QgsGeoNodeConnection.addWmsConnectionSettings怎么用?Python QgsGeoNodeConnection.addWmsConnectionSettings使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类qgis.core.QgsGeoNodeConnection
的用法示例。
在下文中一共展示了QgsGeoNodeConnection.addWmsConnectionSettings方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testWmsConnection
# 需要导入模块: from qgis.core import QgsGeoNodeConnection [as 别名]
# 或者: from qgis.core.QgsGeoNodeConnection import addWmsConnectionSettings [as 别名]
def testWmsConnection(self):
"""
Test adding GeoNode WMS related connection settings to a uri
"""
c = QgsGeoNodeConnection('test')
uri = c.uri()
c.addWmsConnectionSettings(uri)
self.assertEqual(uri.param('referer'), 'my_ref')
self.assertEqual(uri.param('IgnoreGetMapUrl'), '1')
self.assertEqual(uri.param('IgnoreGetFeatureInfoUrl'), '1')
self.assertEqual(uri.param('SmoothPixmapTransform'), '1')
self.assertEqual(uri.param('dpiMode'), '4')
self.assertEqual(uri.param('IgnoreAxisOrientation'), '1')
self.assertEqual(uri.param('InvertAxisOrientation'), '1')