Surface.js 527 B

1234567891011121314151617
  1. /* Copyright (c) 2006-2011 by OpenLayers Contributors (see authors.txt for
  2. * full list of contributors). Published under the Clear BSD license.
  3. * See http://svn.openlayers.org/trunk/openlayers/license.txt for the
  4. * full text of the license. */
  5. /**
  6. * @requires OpenLayers/Geometry.js
  7. */
  8. OpenLayers.Geometry.Surface = OpenLayers.Class(OpenLayers.Geometry, {
  9. initialize: function() {
  10. OpenLayers.Geometry.prototype.initialize.apply(this, arguments);
  11. },
  12. CLASS_NAME: "OpenLayers.Geometry.Surface"
  13. });