Package org.zkoss.openlayers.layer

Source Code of org.zkoss.openlayers.layer.WMTS

/* WMTS.java

{{IS_NOTE
  Purpose:
   
  Description:
   
  History:
    Jun 21, 2012 3:38:55 PM , 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.HashMap;
import java.util.Map;

import org.zkoss.openlayers.util.Function;
import static org.zkoss.openlayers.util.Helper.mergeMap;
import static org.zkoss.openlayers.util.Helper.pair;

/**
* @author jumperchen
*
*/
public class WMTS extends Layer {

  public WMTS(Map options) {
    super(null, options);
  }

  @Override
  protected String getNativeClass() {
    return "OpenLayers.Layer.WMTS";
  }

  public void mergeNewParams(Map params) {
    if (_options == null)
      _options = new HashMap();
    _options.putAll(params);
    clientUpdate("mergeNewParams", params);
  }

  @Override
  protected Function newNativeObject() {
    return new Function(getNativeClass(), mergeMap(getOptions(),
        pair("uuid", getUuid())));
  }
}
TOP

Related Classes of org.zkoss.openlayers.layer.WMTS

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.