MIERUNE / qgis-plugx-plugin

QGIS to Illustrator with PlugX
GNU General Public License v2.0
3 stars 0 forks source link

symboltype == hybrid? #62

Closed Kanahiro closed 11 months ago

Kanahiro commented 1 year ago

symboltype == hybrid is not supported yet.

bordoray commented 11 months ago

Hybrid is related to Geometry generator symbol.

children-SymbolLayer are generic Marker, Line, or fill as in specs

image
lyr[0].renderer().symbol()[0].layerType()
'GeometryGenerator'

lyr[0].renderer().symbol()[0].type()
<SymbolType.Hybrid: 3>

lyr[0].renderer().symbol()[0].symbolType()
<SymbolType.Marker: 0>

Geometry generator use case by Yamazaki https://qiita.com/KEI_YAMA/items/c01b0a434d340924302b

Kanahiro commented 11 months ago

Hybrid is related to Geometry generator symbol.

Thank you for investigation, we can set very low priority to hybrid same to GeometryGenerator because hybrid could be used on GeometryGenerator but we have no plan to support this.