誰かが選択した機能の属性を取得する方法の例を提供できるかどうか疑問に思いますか?
Pythonコンソールで次のコードを試しましたが、属性を取得したいところに行き詰まっています。
qgis.utils.iface
canvas = qgis.utils.iface.mapCanvas()
cLayer = canvas.currentLayer()
selectList = []
if cLayer:
count = cLayer.selectedFeatureCount()
print count
selectedList = layer.selectedFeaturesIds()
for f in selectedList:
# This is where I'm stuck
# As I don't know how to get the Attributes of the features
誰かが助けてくれたら本当に嬉しいです。
よろしく