Tagged Questions
2
votes
0answers
60 views
Geoserver CQL Cross Layer Intersection Failing
I am having trouble forming a properly formatted CQL request using geoServer cross layer filer functions and was hoping others could assist. My request is as follows:
...
1
vote
0answers
83 views
Leaflet Call to GeoServer for GeoJson [duplicate]
Possible Duplicate:
GeoServer Callback Function Undefinded
I've gotten this far by following examples mentioned below, but I'm stuck. The URL returns the GeoJson file but it isn't getting ...
0
votes
0answers
30 views
Selective rendering of features in a WFS layer
I wish to show only specific features on a WFS layer dynamically based on an user input( say the distance to be travelled from a point). Kindly suggest me something.
cheers,
milon
3
votes
1answer
305 views
Openlayers: OGC Filter problem
I have a problem with OGC filter.
My layer in OpenLayers has this filter:
filter: new OpenLayers.Filter.Comparison({
type: OpenLayers.Filter.Comparison.BETWEEN,
property: ...
3
votes
2answers
513 views
OpenLayers spatial filter polygon problem
I've got a dataset of English Counties (currently cut down for testing) that I'm serving from SQL 2008 using MapServer and OpenLayers. The features in my dataset are appearing in the right location on ...
0
votes
0answers
154 views
Openlayers WFS Features returned but not drawed
I've managed to get features return by a WFS filter layer but I can't add them on top a google map layer.
var map, Geographic, Mercator, wfsLayer;
OpenLayers.IMAGE_RELOAD_ATTEMPTS = 3;
...
1
vote
1answer
262 views
OpenLayers / Mapserver WFS Filter: <gml:null>missing</gml:null>
I'm trying to filter features in OpenLayers when moving a JQueryUI slider. It works like this:
EDIT: full files available here on GitHub.
JQueryUI slider
When moving the slider cursor, minSelection ...
1
vote
2answers
481 views
Passing selected polygon to INTERSECTS filter in a WFS request
In the code below,
<ogc:Filter>
<ogc:Intersects>
<ogc:PropertyName>the_geom</ogc:PropertyName>
<ogc:Function name="querySingle">
...
0
votes
1answer
224 views
GeoServer: Cross Layer Filtering vs Layer Groups
To pull features using WFS from several layers in one request, I have two options: One, create a layer group, and then get features from the layer group, as opposed to individual layers. Two, use ...
2
votes
2answers
662 views
GeoMedia WebMap with WFS 1.1.0 Filter Examples?
I'm having problems forming a GET query for WebMap spatial data using WFS 1.1.0. My query looks like this:
...
1
vote
3answers
2k views
OpenLayers WFS protocol: work with filters if the protocol is defined out of layer constructor
follow question:wfs-load-feature-check
the scenario is: i am trying to load a WFS layer, since it takes a while to load all features, I want to give user a notice while waiting for response. the ...
3
votes
1answer
649 views
Case Insensitive WFS Attribute Search with ArcGIS Server?
I'm using ArcGIS 9.3.1 to host WMS and WFS services.
I have a map (.mxd file) with a layer whose attribute table includes fields with mixed-case string data. When I open this map in ArcMap and ...
2
votes
1answer
345 views
How to query some properties of a list of typenames in geoserver
I want to query selected propertynames from a list of Typenames in Geoserver.
I could find an example from OGC WMS 1.1.0 Implementation Specification ( pdf document page 80 Example 10) which is not ...