GeoServer callback function
GeoServer web.xml ENABLE_JSONP true Request WFS var wfsParams = { service: 'WFS', version: '1.1.0', request: 'GetFeature', typeName: 'vizm:tl_scco_sig', maxFeatures: '50', srsName: 'EPSG:4326', outputFormat: 'text/javascript', format_options: 'callback:responseJSON' }; $.ajax({ url: 'http://localhost:8081/geoserver/vizm/wfs', data: $.param(wfsParams), type: 'GET', jsonpCallback: 'responseJSON', ..
더보기