ol.Tile Maven / Gradle / Ivy
/*******************************************************************************
* Copyright 2014, 2016 gwt-ol3
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
package ol;
import jsinterop.annotations.JsType;
import ol.events.EventTarget;
/**
*
* Base class for tiles.
*
*/
@JsType(isNative = true)
public abstract class Tile implements EventTarget {
/**
* Get the tile coordinate for this tile.
*
* @return TileCoord
*/
public native TileCoord getTileCoord();
/**
* Load the image or retry if loading previously failed. Loading is taken
* care of by the tile queue, and calling this method is only needed for
* preloading or for reloading in case of an error.
*
*/
public native void load();
}