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

org.gwtopenmaps.openlayers.client.layer.TMS 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 Amr Alam - Refractions Research
 *
 */
public class TMS extends GridLayer {

	protected TMS(JSObject element) {
		super(element);
	}

	public TMS(String name, String url, TMSOptions options) {
		this(TMSImpl.create(name, url, options.getJSObject()));
	}

	public int getNumLoadingTiles(){
		return TMSImpl.getNumLoadingTiles(this.getJSObject());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy