congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
GetFeatureInfo.getWidth
Code IndexAdd Tabnine to your IDE (free)

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

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

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( "query_layers", csvLayerNames );
params.put( "styles", "" );
params.put( "width", Integer.toString( gfi.getWidth() ) );
params.put( "height", Integer.toString( gfi.getHeight() ) );
params.put( "format", getFormats( GetMap ).getFirst() );
origin: deegree/deegree3

List<LayerData> list = new ArrayList<LayerData>();
double scale = calcScaleWMS130( gfi.getWidth(), gfi.getHeight(), gfi.getEnvelope(), gfi.getCoordinateSystem(),
                DEFAULT_PIXEL_SIZE );
origin: deegree/deegree3

List<String> queryLayers = map( fi.getQueryLayers(), CollectionUtils.<LayerRef> getToStringMapper() );
RenderingInfo info = new RenderingInfo( fi.getInfoFormat(), fi.getWidth(), fi.getHeight(), false, null,
                    fi.getEnvelope(), 0.28, map );
String format = fi.getInfoFormat();
org.deegree.protocol.wms.opsGetFeatureInfogetWidth

Popular methods of GetFeatureInfo

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

Popular in Java

  • Making http post requests using okhttp
  • findViewById (Activity)
  • setScale (BigDecimal)
  • setRequestProperty (URLConnection)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • 21 Best Atom Packages for 2021
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now