lockablesize.java

来自「geotools的源码」· Java 代码 · 共 12 行

JAVA
12
字号
package uk.ac.leeds.ccg.geotools;
/* some layers contain shapes that do not change size with scale.
 * circle layers for example can have the radius of each circle locked to one mesured in pixels
 * rather than geographic coordinates.<br>
 * For such layers, the getID test needs to have an additional scale peramiter included.<br>
 * Any layer which implements LockableSize will have this getID test called insted of the normal one.
 */
 
public interface LockableSize
{
    public int getID(GeoPoint p, Scaler s);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?