org.zkoss.openlayers.layer.Google Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zkopenlayers Show documentation
Show all versions of zkopenlayers Show documentation
ZK wrapper for OpenLayers 2
The newest version!
/* Google.java
{{IS_NOTE
Purpose:
Description:
History:
Jun 20, 2012 11:03:17 AM , Created by jumperchen
}}IS_NOTE
Copyright (C) 2012 Potix Corporation. All Rights Reserved.
{{IS_RIGHT
}}IS_RIGHT
*/
package org.zkoss.openlayers.layer;
import java.util.Map;
import org.zkoss.json.JSONAware;
/**
* @author jumperchen
*
*/
public class Google extends Layer {
public enum Type implements JSONAware {
NORMAL, PHYSICAL, HYBRID, SATELLITE;
@Override
public String toJSONString() {
switch (this) {
case NORMAL:
return "G_NORMAL_MAP";
case PHYSICAL:
return "G_PHYSICAL_MAP";
case HYBRID:
return "G_HYBRID_MAP";
case SATELLITE:
return "G_SATELLITE_MAP";
}
return "";
}
}
public Google(Map options) {
super(null, options);
}
public Google(String name, Map options) {
super(name, options);
}
@Override
protected String getNativeClass() {
return "OpenLayers.Layer.Google";
}
}