Codota Logo
GetFeatureInfo.getY
Code IndexAdd Codota to your IDE (free)

How to use
getY
method
in
org.deegree.protocol.wms.ops.GetFeatureInfo

Best Java code snippets using org.deegree.protocol.wms.ops.GetFeatureInfo.getY (Showing top 3 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
LocalDateTime l =
  • Codota Iconnew LocalDateTime()
  • Codota IconLocalDateTime.now()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseLocalDateTime(text)
  • Smart code suggestions by Codota
}
origin: deegree/deegree3

private List<LayerQuery> prepareGetFeatures( org.deegree.protocol.wms.ops.GetFeatureInfo gfi ) {
  List<LayerQuery> queries = new ArrayList<LayerQuery>();
  Iterator<LayerRef> layerItr = gfi.getQueryLayers().iterator();
  Iterator<StyleRef> styleItr = gfi.getStyles().iterator();
  List<OperatorFilter> filters = gfi.getFilters();
  Iterator<OperatorFilter> filterItr = filters == null ? null : filters.iterator();
  while ( layerItr.hasNext() ) {
    LayerRef lr = layerItr.next();
    StyleRef sr = styleItr.next();
    OperatorFilter f = filterItr == null ? null : filterItr.next();
    final int layerRadius = defaultLayerOptions.getFeatureInfoRadius();
    LayerQuery query = new LayerQuery( gfi.getEnvelope(), gfi.getWidth(), gfi.getHeight(), gfi.getX(),
                      gfi.getY(), gfi.getFeatureCount(), f, sr, gfi.getParameterMap(),
                      gfi.getDimensions(), new MapOptionsMaps(), gfi.getEnvelope(),
                      layerRadius );
    queries.add( query );
  }
  return queries;
}
origin: deegree/deegree3

  params.put( "y", Integer.toString( gfi.getY() ) );
  params.put( "srs", gfi.getCoordinateSystem().getAlias() );
  String fmt = "text/xml";
} else {
  params.put( "i", Integer.toString( gfi.getX() ) );
  params.put( "j", Integer.toString( gfi.getY() ) );
  params.put( "crs", gfi.getCoordinateSystem().getAlias() );
  String fmt = "text/xml";
origin: deegree/deegree3

info.setFeatureCount( fi.getFeatureCount() );
info.setX( fi.getX() );
info.setY( fi.getY() );
LinkedList<String> headers = new LinkedList<String>();
Pair<FeatureCollection, LinkedList<String>> pair = new Pair<FeatureCollection, LinkedList<String>>(
org.deegree.protocol.wms.opsGetFeatureInfogetY

Popular methods of GetFeatureInfo

  • <init>
  • getCoordinateSystem
  • getEnvelope
  • getFeatureCount
  • getHeight
  • getQueryLayers
  • getWidth
  • getX
  • cleanUpLayers
  • getDimensions
  • getFilters
  • getInfoFormat
  • getFilters,
  • getInfoFormat,
  • getParameterMap,
  • getStyles,
  • handleCommon,
  • handleSLD,
  • parse111,
  • parse130,
  • returnGeometries

Popular in Java

  • Updating database using SQL prepared statement
  • runOnUiThread (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • orElseThrow (Optional)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • JFileChooser (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now