1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
...
iv.addLayer(
//layerOpts
{
//type
type:'WFS',
//name
name:'Parcelle sélectionnée',
//url
url:'http://wxs.ign.fr/'+[config.keyJsWFSParcels]+'/geoportail/wfs?',
//params
params:{
typename:'parcelle',
version: '2.0.0'
},
//options
options:{
protocolOptions:{
featurePrefix:'BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G',
featureNS:'http://wxs.ign.fr/datastore/BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G',
geometryName:'the_geom'
},
projection:'EPSG:2154',
styleMap: new OpenLayers.StyleMap({
pointRadius: 4,
strokeColor: "orange",
strokeWidth: 3,
strokeOpacity: 0.7,
fillOpacity: 0.5,
fillColor: "orange"
}),
visibility: true,
displayInLayerSwitcher:true
}
}
);
... |
Partager