Sha256: 854414fabc3e0bbe46ada4ca6c9a21072159f1fda74fe7a1829520e2045ac1b2
Contents?: true
Size: 540 Bytes
Versions: 3
Compression:
Stored size: 540 Bytes
Contents
# frozen_string_literal: true require "lutaml/model" require_relative "abstract_geometry" module Ogc module Gml class GeometryArrayProperty < Lutaml::Model::Serializable attribute :owns, :boolean, default: -> { false } attribute :abstract_geometry, AbstractGeometry, collection: true xml do root "geometryMembers" namespace "http://www.opengis.net/gml/3.2", "gml" map_attribute "owns", to: :owns map_element "AbstractGeometry", to: :abstract_geometry end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ogc-gml-1.0.3 | lib/ogc/gml/geometry_array_property.rb |
ogc-gml-1.0.2 | lib/ogc/gml/geometry_array_property.rb |
ogc-gml-1.0.1 | lib/ogc/gml/geometry_array_property.rb |