OpenLayers调用ArcGIS Server发布的WFS服务

原创: 蔡建良 2013-08-20

一. 开发环境

1) Openlayers2.13+arcgis server9.3

2) WFS地图空间参考EPSG: 4326也可以是EPSG:102113

3) Openlayers底图空间参考EPSG: 900913

二. 发布地图服务

1) 采用ArcMap制作mxd地图文档。

2) 采用ArcCatalog发布地图服务,将wfs打勾。

部分操作截图如下:

3) 测试WFS服务:

http://lx-server/arcgis/services/Yangdi/MapServer/WFSServer?request=GetCapabilities&service=WFS

三. 采用OpenLayers.Layer.Vector调用。该方法为POST方式。

WFS1.1.0支持服务端重投影:

new OpenLayers.Layer.Vector("一类样地",{

strategies: [new OpenLayers.Strategy.BBOX()],

protocol: new OpenLayers.Protocol.WFS({

version: "1.1.0",

srsName: "EPSG:102113",

url: "http://lx-server/arcgis/services/Yangdi/MapServer/WFSServer",

featureNS: "",

featureType: "plotpoint_Liaoning_Intersect",

maxFeatures: "10",

geometryName: "Shape"

}),

projection: new OpenLayers.Projection("EPSG:102113"),

visibility: false

})

WFS1.0.0不支持服务端重投影,这边是客户端重投影:

new OpenLayers.Layer.Vector("一类样地",{

strategies: [new OpenLayers.Strategy.BBOX()],

protocol: new OpenLayers.Protocol.WFS({

version: "1.0.0",

srsName: "EPSG:4326",

url: "http://lx-server/arcgis/services/Yangdi/MapServer/WFSServer",

featureNS: "",

featureType: "plotpoint_Liaoning_Intersect",

maxFeatures: "10",

geometryName: "Shape"

}),

projection: new OpenLayers.Projection("EPSG:4326"),

visibility: false

})

四. 采用OpenLayers.Layer.WFS调用。该方法为GET方式。

注意:使用该方法必须引入deprecated.js 文件。

new OpenLayers.Layer.WFS(

"一类样地",

"http://lx-server/arcgis/services/Yangdi/MapServer/WFSServer?",

{

request: 'GetFeature',

typename: "plotpoint_Liaoning_Intersect",

maxfeatures: 10,

extractAttributes: false,

version: "1.1.0",

srsName: "EPSG:102113"

},

{

projection: new OpenLayers.Projection("EPSG:900913"),

isBaseLayer: false,

extractAttributes: false,

visibility: false

}

)

五. OpenLayers调用WFS服务跨域问题解决

1) 在IIS中部署Openlayers开发的网站。

2) 安装python。并让IIS支持python脚本。部分操作截图:

3) 将openlayes自带的proxy.cgi扩展名改为proxy.py,并做如下修改。

(1) 打开proxy.py文件,将开头第一行内容

#!/usr/bin/env python (这是linux的路径)

改为windows路径:

#!C:/Python25/python.exe –u

(2) 在allowedHosts数组中添加要访问的跨域网址lx-server。

allowedHosts = ['www.openlayers.org', 'openlayers.org',

'labs.metacarta.com', 'world.freemap.in',

'prototype.openmnnd.org', 'geo.openplans.org',

'sigma.openplans.org', 'demo.opengeo.org',

'www.openstreetmap.org', 'sample.azavea.com',

'v2.suite.opengeo.org', 'v-swe.uni-muenster.de:8080',

'vmap0.tiles.osgeo.org', 'www.openrouteservice.org',

'maps.wien.gv.at','lx-server’]

4) 在网页脚本中加入如下代码:

OpenLayers.ProxyHost = "proxy.py?url=";

六.测试

在浏览器上运行网页:http://localhost/ yangdi/index.html

效果如下:

Wfs服务返回数据格式为:

<wfs:FeatureCollection xmlns:anhuiplot="http://jane/arcgis/services/anhuiplot/MapServer/WFSServer" xmlns:gml="http://www.opengis.net/gml" xmlns:wfs="http://www.opengis.net/wfs" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jane/arcgis/services/anhuiplot/MapServer/WFSServer http://localhost/arcgis/services/anhuiplot/MapServer/WFSServer?request=DescribeFeatureType%26version=1.1.0%26typename=anhuiproj http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.1.0/wfs.xsd">

<gml:boundedBy>...</gml:boundedBy>

<gml:featureMember>...</gml:featureMember>

<gml:featureMember>...</gml:featureMember>

<gml:featureMember>...</gml:featureMember>

<gml:featureMember>...</gml:featureMember>

<gml:featureMember>...</gml:featureMember>

<gml:featureMember>...</gml:featureMember>

<gml:featureMember>...</gml:featureMember>

<gml:featureMember>...</gml:featureMember>

<gml:featureMember>...</gml:featureMember>

<gml:featureMember>...</gml:featureMember>

</wfs:FeatureCollection>

---其中featureMember-----------------

<gml:featureMember>

<anhuiplot:anhuiproj gml:id="F3__10">

<anhuiplot:OBJECTID>10</anhuiplot:OBJECTID>

<anhuiplot:Shape>

<gml:Point>

<gml:pos>13058352.4935765 3694896.1439479</gml:pos>

</gml:Point>

</anhuiplot:Shape>

<anhuiplot:PLOT_NO>6975</anhuiplot:PLOT_NO>

</anhuiplot:anhuiproj>

</gml:featureMember>

经测试返回10个要素,数据大小为45K。这是由于字段太多造成。可将wfs服务的数据源不需要的字段删除,留下关键字段。最后留下3个字段,返回数据的大小变为4K。

OpenLayers调用ArcGIS Server发布的WFS服务的更多相关文章

  1. OpenLayers调用arcgis server发布的地图服务

    有两种方式可以调用arcgis server发布的地图服务,一种是rest,一种是wms.  地图的投影为900913,arcgis server为10.0版本,地图服务的空间参考为3857.   与 ...

  2. ArcGIS API for JavaScript(2)-ArcGIS Server发布要素图层服务

    1.前言 上一篇该系列的文章我们主要讲了一下基础Web地图搭建,这篇我们主要讲一下ArcGIS Server发布服务,并且如何调用服务.将自己的数据加载到Web地图当中来,实现Web端浏览数据. 2. ...

  3. C#中winform下利用ArcEngine调用ArcGIS Server发布的服务 AE9.3

    主要使用了AE中的IAGSServerOject接口及IMapServer接口.Private void GetServerTest_Click(object sender, EventArgs e) ...

  4. C#中winform下利用ArcEngine调用ArcGIS Server发布的服务 AE 10

    开发环境:vs2010 + AE 10 测试 public Form1() { ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.ProductCode.Engi ...

  5. Arcgis api for javascript学习笔记 - 不改变默认端口(6080)情况下,外网访问Arcgis Server 发布的接口

    Arcgis Server发布的地图服务地址默认端口号是6080,假设本机上只对80端口做了外网映射,在IIS中部署了一个网站绑定了80端口,那么网站中某个页面通过arcgis api for js ...

  6. arcgis engine 调用arcgis server服务

    首先需要添加两个引用: using ESRI.ArcGIS.GISClient;using ESRI.ArcGIS.DataSourcesRaster; /// <summary> /// ...

  7. 不同网段无法加载ArcGIS Server发布服务解决方法

    问题描述: ArcGIS Server 10发布的服务, (1)在相同网段的Desktop9.3和Engine 9.3程序下可以正常显示, (2)在不同网段Desktop9.3和Engine 9.3程 ...

  8. ArcGis server发布地图服务

    ArcGIS server发布服务: 首先修改地图文档属性中的关联默认数据库 最后使用分享将地图服务发布到server上,是地图服务可以使用: 注意一定要勾选 Feature Access选项 fea ...

  9. ArcMap 发布 ArcGIS Server OGC(WMSServer,MapServer)服务

    完整的从ArcMap部署地图到ArcGIS Server 中作为地图服务的过程. 1. 添加图层数据-- 不能添加地图 baseMap 2. 安装ArcGIS Server ,记住登录Manager ...

随机推荐

  1. Spark源码分析(二)-SparkContext创建

    原创文章,转载请注明: 转载自http://www.cnblogs.com/tovin/p/3872785.html  SparkContext是应用启动时创建的Spark上下文对象,是一个重要的入口 ...

  2. HADOOP NAMENODE对Image和edits的处理

    1.SNN CheckPoint的处理流程 配置中配置做CheckPoint的两个条件,一个是文件大小editlog大于多大就做,另一个是时间维度,多长时间做一次. (1)SNN首先检查是否需要进行c ...

  3. C# Socket 入门1(转)

    1.   服务端程序  1 using System;  2 using System.Collections.Generic;  3 using System.Text;  4 using Syst ...

  4. lintcode:打劫房屋

    题目 打劫房屋 假设你是一个专业的窃贼,准备沿着一条街打劫房屋.每个房子都存放着特定金额的钱.你面临的唯一约束条件是:相邻的房子装着相互联系的防盗系统,且 当相邻的两个房子同一天被打劫时,该系统会自动 ...

  5. 批处理命令 - for

    0.功能 Runs a specified command for each file in a set of files.对一组文件中的每一个文件执行某个特定命令. ---------------- ...

  6. Visual studio C#语言输出调试信息到Output窗口方法

    1.菜单栏: 工具>选项>调试>将所有输出窗口文本重定向到即时窗口          2.使用Console.WriteLine或Write添加调试信息 3.按F5启动调试程序 4. ...

  7. USACO Section 2.4: Bessie Come Home

    因为题目给了边的信息,所以比较适用bell-man的方法 /* ID: yingzho1 LANG: C++ TASK: comehome */ #include <iostream> # ...

  8. 【首先膜拜大湿】poj-2386-Lake Counting-DFS模板题

    Lake Counting Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 16802   Accepted: 8523 De ...

  9. Mac 切换Windows 使用虚拟机, 不推荐双系统

     为什么使用虚拟机而不是双系统? 1.虚拟机可以随时在两个系统之间进行切换,便于在工作时使用而不影响效率.如果是双系统,在切换到另一个系统时需要关机重启,太过麻烦. 2.虚拟机除了运行Windows之 ...

  10. JSON 之 SuperObject(7): 可以省略的双引号

    在 JSON 中, 字符串应该在双引号中; 从上个例子才发现: 原来这个双引号可以省略, 有空格都行 当然只是在程序代码中可以省略, 对象会自动识别添加的. 即如此, 下面写法都可以: uses Su ...