1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| Ext.Ajax.request({
url:"http://carto.ecologie.gouv.fr/MEDD/wms.php",
params:{VERSION:'1.0.0',
SERVICE:'WFS',
REQUEST:'GetFeature',
service_idx:'17W',
map:'sacarte.map',
TYPENAME:'znieff_de_type_II_en_Haute_Normandie',
FILTER:'<Filter><DWithin><PropertyName>Geometry</PropertyName><gml:Point><gml:coordinates>459350,2493650</gml:coordinates></gml:Point><Distance units=\'m\'>1000</Distance></DWithin></Filter>'},
method:"GET",
success:function(result,request) {
console.log(result.responseText);
},
failure:function(result,request) {
Ext.Msg.show({title:'Error System',msg: result.responseText , icon: Ext.MessageBox.ERROR, buttons: Ext.Msg.OK})
}
}); |
Partager