-       public int $radius;
-
-       /**
-        * Creates a new map util
-        *
-        * @param RouterInterface $router The RouterInterface instance
-        * @param SluggerUtil $slugger The SluggerUtil instance
-        */
-       function __construct(RouterInterface $router, SluggerUtil $slugger, string $fill = self::fill, int $fontSize = self::fontSize, string $highFill = self::highFill, int $highFontSize = self::highFontSize, int $highRadius = self::highRadius, string $highStroke = self::highStroke, int $highStrokeWidth = self::highStrokeWidth, int $radius = self::radius, string $stroke = self::stroke, int $strokeWidth = self::strokeWidth) {
-               //Set router
-               $this->router = $router;
-
-               //Set slugger
-               $this->slugger = $slugger;
-
-               //Set fill
-               $this->fill = $fill;
-
-               //Set font size
-               $this->fontSize = $fontSize;
-
-               //Set highFill
-               $this->highFill = $highFill;
-
-               //Set high font size
-               $this->highFontSize = $highFontSize;
-
-               //Set high radius size
-               $this->highRadius = $highRadius;
-
-               //Set highStroke
-               $this->highStroke = $highStroke;
-
-               //Set high stroke size
-               $this->highStrokeWidth = $highStrokeWidth;
-
-               //Set radius size
-               $this->radius = $radius;
-
-               //Set stroke
-               $this->stroke = $stroke;
-
-               //Set stroke size
-               $this->strokeWidth = $strokeWidth;