![JAR search and dependency download from the Maven repository](/logo.png)
org.meteoinfo.data.mapdata.webmap.CMAVecMapInfo Maven / Gradle / Ivy
package org.meteoinfo.data.mapdata.webmap;
/**
*
* @author yaqiang
*/
public class CMAVecMapInfo extends TileFactoryInfo {
//
//
//
/**
* Constructor
*/
public CMAVecMapInfo() {
super("CMA_VEC_MAP", 0, 18, 19,
256, true, true, // tile size is 256 and x/y orientation is normal
"http://10.1.64.154/DataServer?T=vec_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