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

org.gwtopenmaps.openlayers.client.layer.GML Maven / Gradle / Ivy

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

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

/**
 * @author Francesco
 * 
 */
public class GML extends Vector {

	protected GML(JSObject gml) {
		super(gml);
	}
	
	public GML(String name, String url){
		this(GMLImpl.create(name, url));
	}
	
	public GML(String name, String url,GMLOptions options){
		this(GMLImpl.create(name, url, options.getJSObject()));
	}
	
	public void loadGML(){
		GMLImpl.loadGML(getJSObject());
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy