GeoObject constructor

GeoObject(
  1. String? name,
  2. String? descriptionText,
  3. List<Geometry> geometry,
  4. BoundingBox? boundingBox,
  5. Map<String, Attribution> attributionMap,
  6. TypeDictionaryBase<BaseMetadata> metadataContainer,
  7. List<String> aref,
)

Implementation

factory GeoObject(
        core.String? name,
        core.String? descriptionText,
        core.List<mapkit_geometry_geometry.Geometry> geometry,
        mapkit_geometry_geometry.BoundingBox? boundingBox,
        core.Map<core.String, mapkit_attribution.Attribution> attributionMap,
        type_dictionary.TypeDictionaryBase<mapkit_base_metadata.BaseMetadata>
            metadataContainer,
        core.List<core.String> aref) =>
    GeoObjectImpl(name, descriptionText, geometry, boundingBox,
        attributionMap, metadataContainer, aref);