Class AnchorPointBuilder

  • All Implemented Interfaces:
    Builder<AnchorPoint>

    public class AnchorPointBuilder
    extends Object
    AnchorPoint allows you specify which part of a graphic indicates the location. As an example if your graphic is a pin the AnchorPoint will be the end of the pin.
     AnchorPointBuilder b = new AnchorPointBuilder();
     AnchorPoint anchor = b.x(0.5).y(0.9).build();
     
     
    
    Author:
    Jody Garnett (LISAsoft)
    • Field Detail

      • parent

        protected AbstractSLDBuilder<?> parent
      • unset

        protected boolean unset
    • Constructor Detail

      • AnchorPointBuilder

        public AnchorPointBuilder()
      • AnchorPointBuilder

        public AnchorPointBuilder​(AbstractStyleBuilder<?> parent,
                                  double defaultX,
                                  double defaultY)