- Timestamp:
- 23-12-11 15:32:31 (5 months ago)
- Location:
- flamingo/trunk/fmc
- Files:
-
- 5 edited
-
LayerOGWMS.as (modified) (1 diff)
-
LocationFinder.as (modified) (1 diff)
-
classes/coremodel/service/wfs/FeatureType.as (modified) (2 diffs)
-
classes/coremodel/service/wfs/WFSFeature.as (modified) (2 diffs)
-
classes/geometrymodel/GeometryTools.as (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
flamingo/trunk/fmc/LayerOGWMS.as
r781 r805 36 36 */ 37 37 38 import roo.FilterLayerLayerOGWMSAdapter;39 38 40 39 var version:String = "2.0"; -
flamingo/trunk/fmc/LocationFinder.as
r801 r805 634 634 } else if (!isNaN(extent.minx) && !isNaN(extent.maxx) && !isNaN(extent.miny) && !isNaN(extent.maxy)){ 635 635 env = new Envelope(extent.minx, extent.miny, extent.maxx, extent.maxy) ; 636 conn.performGetFeature(serviceLayer, env, whereClauses, null, false, this, reqprops, contextObject); 637 } else{ 638 conn.performGetFeature(serviceLayer, null, whereClauses, null, false, this, reqprops );639 }636 conn.performGetFeature(serviceLayer, env, whereClauses, null, false, this, reqprops, contextObject); 637 } else{ 638 conn.performGetFeature(serviceLayer, null, whereClauses, null, false, this, reqprops, contextObject); 639 } 640 640 } else if (serviceFeatures != null) { 641 641 foundlocations = new Array(); -
flamingo/trunk/fmc/classes/coremodel/service/wfs/FeatureType.as
r718 r805 1 /*-----------------------------------------------------------------------------1 /*----------------------------------------------------------------------------- 2 2 * This file is part of Flamingo MapComponents. 3 3 * Author: Michiel J. van Heek. … … 78 78 ||property.getType() == preFix + ":MultiPolygonPropertyType " 79 79 ||property.getType() == preFix + ":MultiLineStringPropertyType" 80 ||property.getType() == preFix + ":MultiPointPropertyType") { 80 ||property.getType() == preFix + ":MultiPointPropertyType" 81 ||property.getType() == preFix + ":PointPropertyType") { 81 82 geometryProperties.push(property); 82 83 } -
flamingo/trunk/fmc/classes/coremodel/service/wfs/WFSFeature.as
r718 r805 1 /*-----------------------------------------------------------------------------1 /*----------------------------------------------------------------------------- 2 2 * This file is part of Flamingo MapComponents. 3 3 * Author: Michiel J. van Heek. … … 55 55 ||property.getType() == preFix + ":MultiPolygonPropertyType " 56 56 ||property.getType() == preFix + ":MultiLineStringPropertyType" 57 ||property.getType() == preFix + ":MultiPointPropertyType") { 57 ||property.getType() == preFix + ":MultiPointPropertyType" 58 ||property.getType() == preFix + ":PointPropertyType") { 58 59 if(!contextObject.parseGeometry){ 59 60 //keep xmlNode as value -
flamingo/trunk/fmc/classes/geometrymodel/GeometryTools.as
r718 r805 38 38 var preFix:String = geometryNode.getPrefixForNamespace("http://www.opengis.net/gml"); 39 39 var coordNodes:Array = XMLTools.getElementsByTagName(preFix +":posList", geometryNode); 40 if (coordNodes.length==0){ 41 coordNodes = XMLTools.getElementsByTagName(preFix +":pos", geometryNode); 42 } 40 43 for(var i:Number = 0;i<coordNodes.length;i++){ 41 44 var coordsStr:String = Utils.trim(XMLNode(coordNodes[i]).firstChild.nodeValue)
Note: See TracChangeset
for help on using the changeset viewer.