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