All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.schema.SchemaMap Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package org.schema;

/**
 * Schema.org/Map
 * A map.
 *
 * @author schema.org
 * @class Map
 * @module org.schema
 * @extends CreativeWork
 */
public class SchemaMap extends CreativeWork {
	/**
	 * Schema.org/mapType
	 * Indicates the kind of Map, from the MapCategoryType Enumeration.
	 *
	 * @property mapType
	 * @type MapCategoryType
	 */
	public MapCategoryType mapType;

	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public SchemaMap() {
		context = "http://schema.org/";
		type = "Map";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy