@override String toWKT() { final coords = points.map((p) => '${p.longitude} ${p.latitude}').join(', '); return 'POLYGON (($coords))'; }