org.gwtopenmaps.openlayers.client.control.GraticuleOptions Maven / Gradle / Ivy
The newest version!
/**
*
* Copyright 2015 sourceforge.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
*
*/
package org.gwtopenmaps.openlayers.client.control;
import org.gwtopenmaps.openlayers.client.symbolizer.LineSymbolizer;
import org.gwtopenmaps.openlayers.client.symbolizer.TextSymbolizer;
/**
* @author lorenzo
*
*/
public class GraticuleOptions extends ControlOptions
{
/**
* APIProperty: displayInLayerSwitcher {Boolean} Allows the Graticule
* control to be switched on and off. defaults to true.
*/
public void setDisplayInLayerSwitcher(boolean isDisplay)
{
getJSObject().setProperty("displayInLayerSwitcher", isDisplay);
}
/**
* APIProperty: visible {Boolean} should the graticule be initially visible
* (default=true)
*/
public void setVisible(boolean isVisible)
{
getJSObject().setProperty("visible", isVisible);
}
/**
* APIProperty: labelled {Boolean} Should the graticule lines be labelled?.
* default=true
*/
public void setLabelled(boolean isLabelled)
{
getJSObject().setProperty("labelled", isLabelled);
}
/**
* APIProperty: targetSize {Integer} The maximum size of the grid in pixels
* on the map
*/
public void setTargetSize(int size)
{
getJSObject().setProperty("targetSize", size);
}
/**
* APIProperty: labelFormat {String} the format of the labels, default =
* 'dm'. See for other options.
*/
public void setLabelFormat(String format)
{
getJSObject().setProperty("labelFormat", format);
}
/**
* APIProperty: numPoints {Integer} The number of points to use in each
* graticule line. Higher numbers result in a smoother curve for projected
* maps
*/
public void setNumPoints(int num)
{
getJSObject().setProperty("numPoints", num);
}
/**
* APIProperty: layerName {String} the name to be displayed in the layer
* switcher
*/
public void setLayerName(String name)
{
getJSObject().setProperty("layerName", name);
}
/**
* APIProperty: lineSymbolizer {symbolizer} the symbolizer used to render
* lines
*
* IMPORTANT: when using a lineSymbolizer different from the default, the
* minimal properties strokeColor, strokeWidth, strokeOpacity have to be set.
*/
public void setLineSymbolyzer(LineSymbolizer line)
{
getJSObject().setProperty("lineSymbolizer", line.getJSObject());
}
/**
* APIProperty: labelSymbolizer
* {symbolizer} the symbolizer used to render labels
*/
public void setLabelSymbolizer(TextSymbolizer text)
{
getJSObject().setProperty("labelSymbolizer", text.getJSObject());
}
}