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

org.meteoinfo.data.mapdata.webmap.CMAImgMapInfo Maven / Gradle / Ivy

There is a newer version: 3.8
Show newest version
package org.meteoinfo.data.mapdata.webmap;

/**
 *
 * @author yaqiang
 */
public class CMAImgMapInfo extends TileFactoryInfo {
    // 
    // 
    // 

    /**
     * Constructor
     */
    public CMAImgMapInfo() {
        super("CMA_IMG_MAP", 0, 18, 19,
                256, true, true, // tile size is 256 and x/y orientation is normal
                "http://10.1.64.154/DataServer?T=img_w&X=%1$d&Y=%2$d&L=%3$d",
                "x", "y", "z");
    }
//    // 
//    // 

//    // 
//    // 

    @Override
    public String getTileUrl(int x, int y, int zoom) {
        zoom = this.getTotalMapZoom() - zoom;
        String url = String.format(this.baseURL, x, y, zoom);
        return url;
    }
    // 
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy