/**
  * Sets the width of the polyline.
  *
  * @param width in pixels
  * @return a new PolylineOptions
  */
 public PolylineOptions width(float width) {
   polyline.setWidth(width);
   return this;
 }