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

org.gwtopenmaps.openlayers.client.format.GML3 Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package org.gwtopenmaps.openlayers.client.format;

import org.gwtopenmaps.openlayers.client.util.JSObject;

/**
 * Wraps OpenLayers.Format.GML.v3
 * 
 * Brief explanation of Geographic Markup Language (GML) vector format here.
 *
 * Reference to GML specification. GML is OGC standard.
 *
 * See http://www.ogc.org/
 *
 * @author Edwin Commandeur - Atlis EJS
 * @author Mikael Couzic
 */
public class GML3 extends VectorFormat {

	protected GML3(JSObject gmlFormat){
		super(gmlFormat);
	}

	/**
	 * Unique constructor taking required options as a parameter.
	 * @param options
	 * 				required options
	 */
	public GML3(GML3Options options){
		this(GML3Impl.create(options.getJSObject()));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy