ฉันได้รับความช่วยเหลือในรายการผู้ใช้ GeoServer
เพิ่มลงในไฟล์นี้: /tomcat/webapps/geoserver/WEB-INF/web.xml
<context-param>
<param-name>ENABLE_JSONP</param-name>
<param-value>true</param-value>
</context-param>
และเริ่มบริการใหม่ จากนั้นในคำขอ json ของคุณให้ใช้รูปแบบ = text / javascript
นี่คือรหัสที่ฉันใช้เพื่อขอคุณสมบัติ WFS จาก GeoServer ฉันใช้ API ของ Leafletพร้อมกับ jQuery
var rootUrl = 'http://tomcat.capecodgis.com/geoserver/capecodgis/ows';
var defaultParameters = {
service: 'WFS',
version: '1.0.0',
request: 'GetFeature',
typeName: 'capecodgis:monitor_station',
maxFeatures: 200,
outputFormat: 'text/javascript',
format_options: 'callback: getJson'
};
var parameters = L.Util.extend(defaultParameters);
$.ajax({
url: rootUrl + L.Util.getParamString(parameters),
dataType: 'jsonp',
jsonpCallback: 'getJson',
success: handleJson
});
function handleJson(data) {
L.geoJson(data, {
onEachFeature: onEachFeature,
pointToLayer: function (feature, latlng) {
return L.circleMarker(latlng, geojsonMarkerOptions);
//return L.marker(latlng);
}
}).addTo(map);
}
หวังว่าสิ่งนี้จะช่วยให้คุณเริ่มต้นและรู้สึกอิสระที่จะขอข้อมูลเพิ่มเติม