#1 Mon 25 October 2010 11:15
- Floflo49fb
- Participant assidu
- Lieu: Montpellier
- Date d'inscription: 29 Aug 2009
- Messages: 250
- Site web
Débutant OpenLayers - Carte de France démultipliée
Bonjour à tous,
J'ai besoin d'aide concernant la visualisation d'un mapfile des départements français avec openlayers.
Le mapfile fonctionne parfaitement, mais dans openlayers ma carte de France est démultipliée (voir fichier joint) mais je ne sais pas d'ou vient ce problème. Je souhaiterais que ma zone d'étude s'arrête à la France.
Merci de votre aide.
Voici mon script:
<html>
<head>
<title>Departements francais</title>
<script src=".../OpenLayers-2.10/OpenLayers.js"> </script>
<script type="text/javascript">
var map = null;
function init(){
map = new OpenLayers.Map('map',
{projection: 'epsg:2154',
resolutions: [1000,500,250,100,50],
maxExtent: new OpenLayers.Bounds(-312934.521309, 6023125.075000, 1654535.521309, 7137045.925000)});
var DEP = new OpenLayers.Layer.WMS("DEPARTEMENTS",
"http://localhost/cgi-bin/mapserv?MAP=/sig/essai4.map&MODE=MAP&",
{layers: 'DEPARTEMENTS'});
map.addLayers([DEP]);
map.addControl(new OpenLayers.Control.MousePosition());
map.addControl(new OpenLayers.Control.LayerSwitcher());
map.setCenter(new OpenLayers.LonLat(600000,6600000),1)
}
</script>
</head>
<body onload="init()">
<div id="map" style="padding:10px; display:block; border:1px solid; width:800px; height:600px;"></div>
</body>
</html>
Dernière modification par Floflo49fb (Mon 25 October 2010 11:17)
Florian Boret
Dream it, Make it, Share it
Hors ligne