class_Boundary - jcobban/Genealogy GitHub Wiki

class Boundary

Up: locationCommon exports

The class Boundary defines how and where the boundary of a region, or a line is drawn on a map.

  • new Boundary(boundstr, readonly) The constructor creates an instance of boundary based upon the boundary attribute of a PHP Location object.
  • this.polygon is true if the object represents a region contained within a polygon, otherwise it is an open line.
  • this.boundary is an instance of either google.maps.Polygon or google.maps.Polyline
  • this.polyOptions is an object which defines the drawing attributes of the boundary line for a Polygon or the line for a PolyLine

Next: function locationChanged(event)