本文整理汇总了Python中qgis.core.QgsGeoNodeConnection类的典型用法代码示例。如果您正苦于以下问题:Python QgsGeoNodeConnection类的具体用法?Python QgsGeoNodeConnection怎么用?Python QgsGeoNodeConnection使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了QgsGeoNodeConnection类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testWfsConnection
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
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')