英文:
Attributes table doesn't transfer from external WMS to GeoServer WMS
问题
我是新手使用GeoServer,对这个领域几乎一无所知。我尝试从外部WMS源(https://services.slip.wa.gov.au/public/services/SLIP_Public_Services/Industry_and_Mining/MapServer/WMSServer)加载矿权WMS数据到我的GeoServer。一旦加载到服务器上,我预览图层时发现,当我点击一个矿权时,地图上没有任何属性表。
请告诉我我做错了什么,如果您需要更多关于这个问题的信息,请告诉我。
由于我对此了解有限,而且在线教程似乎没有涵盖这个情况,我不知道该尝试什么。
英文:
I'm new to GeoServer and pretty much everything in this domain. I'm trying to load up Mining Tenement WMS data from an External WMS Source (https://services.slip.wa.gov.au/public/services/SLIP_Public_Services/Industry_and_Mining/MapServer/WMSServer) to my geoserver. Once loaded onto the server, I preview the layer but discover that the map does not have any attribute tables when I click on a tenement.
Please let me know where i'm going wrong and if you need any more information about this problem
Since my knowledge about this is limited and the case seems to not be covered by tutorials online, i dont know what to try
答案1
得分: 0
从手册中:
WMS GetFeatureInfo请求将传递给远程WMS。如果远程WMS支持
application/vnd.ogc.gml
格式,则请求将成功。
不幸的是,您的服务器只提供以下信息:
<GetFeatureInfo>
<Format>application/vnd.esri.wms_raw_xml</Format>
<Format>application/vnd.esri.wms_featureinfo_xml</Format>
<Format>application/vnd.ogc.wms_xml</Format>
<Format>application/geojson</Format>
<Format>text/xml</Format>
<Format>text/html</Format>
<Format>text/plain</Format>
英文:
From the manual:
> WMS GetFeatureInfo requests will be passed to the remote WMS. If the remote WMS supports the application/vnd.ogc.gml
format the request will be successful.
Unfortunately your server only provides information in:
<GetFeatureInfo>
<Format>application/vnd.esri.wms_raw_xml</Format>
<Format>application/vnd.esri.wms_featureinfo_xml</Format>
<Format>application/vnd.ogc.wms_xml</Format>
<Format>application/geojson</Format>
<Format>text/xml</Format>
<Format>text/html</Format>
<Format>text/plain</Format>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论