Source: formats/kml/geom/KmlGeometry.js

  1. /*
  2. * Copyright 2003-2006, 2009, 2017, United States Government, as represented by the Administrator of the
  3. * National Aeronautics and Space Administration. All rights reserved.
  4. *
  5. * The NASAWorldWind/WebWorldWind platform is licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. /**
  18. * @exports KmlGeometry
  19. */
  20. define([
  21. '../KmlObject'
  22. ], function (KmlObject) {
  23. "use strict";
  24. /**
  25. * Constructs an KmlGeometry. Application usually don't call this constructor. It is called by {@link KmlFile} as
  26. * Objects from KmlFile are read.
  27. * @alias KmlGeometry
  28. * @constructor
  29. * @classdesc Contains the data associated with Kml geometry
  30. * @param options {Object}
  31. * @param options.objectNode {Node} Node representing the Geometry
  32. * @throws {ArgumentError} If either the node is null or the content of the Kml point contains invalid elements.
  33. * @see https://developers.google.com/kml/documentation/kmlreference#geometry
  34. * @augments KmlObject
  35. */
  36. var KmlGeometry = function (options) {
  37. KmlObject.call(this, options);
  38. this._renderable = null;
  39. };
  40. KmlGeometry.prototype = Object.create(KmlObject.prototype);
  41. /**
  42. * @inheritDoc
  43. */
  44. KmlGeometry.prototype.render = function(dc, kmlOptions) {
  45. KmlObject.prototype.render.call(this, dc, kmlOptions);
  46. this.enabled = kmlOptions.lastVisibility;
  47. };
  48. /**
  49. * @inheritDoc
  50. */
  51. KmlGeometry.prototype.getTagNames = KmlGeometry.getTagNames = function () {
  52. return ['Point', 'LinearRing', 'LineString', 'MultiGeometry', 'Polygon'];
  53. };
  54. return KmlGeometry;
  55. });