Comment créer une google map réactive à partir du code
<div class="map">
<iframe>...</iframe>
</div>
J'utilise en css pour la carte complète
.map{max-width:100%;}
et petit appareil
.map{max-width:40%;}
mais ça n'a pas marché.
Quelqu'un a une idée? Merci.
Ajoutez ceci à votre fonction d'initialisation:
<script type="text/javascript">
function initialize() {
var map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions);
// Resize stuff...
google.maps.event.addDomListener(window, "resize", function() {
var center = map.getCenter();
google.maps.event.trigger(map, "resize");
map.setCenter(center);
});
}
</script>
Ajouter un 100% aux attributs width et height de son iframe a toujours fonctionné pour moi. Par exemple
<iframe width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.in/maps?f=q&source=s_q&hl=en&geocode=+&q=surat&ie=UTF8&hq=&hnear=Surat,+Gujarat&ll=21.195,72.819444&spn=0.36299,0.676346&t=m&z=11&output=embed"></iframe><br />
Une solution sans javascript:
HTML:
<div class="google-maps">
<iframe>........//Google Maps Code//..........</iframe>
</div>
CSS:
.google-maps {
position: relative;
padding-bottom: 75%; // This is the aspect ratio
height: 0;
overflow: hidden;
}
.google-maps iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}
Si vous avez une taille de carte personnalisée, supprimez la "hauteur: 100%! Important"
Il vaut mieux utiliser Google Map API. J'ai créé un exemple ici: http://jsfiddle.net/eugenebolotin/8m1s69e5/1/
Les principales caractéristiques utilisent des fonctions:
//Full example is here: http://jsfiddle.net/eugenebolotin/8m1s69e5/1/
map.setCenter(map_center);
// Scale map to fit specified points
map.fitBounds(path_bounds);
Il gère les événements de redimensionnement et ajuste automatiquement la taille.
Vérifiez ceci pour une solution: http://jsfiddle.net/panchroma/5AEEV/
Je ne peux pas prendre le crédit pour le code cependant, il vient de moyen rapide et facile de rendre google maps iframe incorporer responsive .
Bonne chance!
[~ # ~] css [~ # ~]
#map_canvas{
width:50%;
height:300px !important;
}
[~ # ~] html [~ # ~]
<!DOCTYPE html>
<html>
<head>
<title>Google Maps JavaScript API v3 Example: Map Simple</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/>
<meta charset="utf-8"/>
<style>
html, body, #map_canvas {
margin: 0;
padding: 0;
height: 100%;
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script>
var map;
function initialize() {
var mapOptions = {
zoom: 8,
center: new google.maps.LatLng(-34.397, 150.644),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('map_canvas'),
mapOptions);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="map_canvas"></div>
</body>
</html>
Voici une solution CSS standard + JS pour le redimensionnement en hauteur de la carte
CSS
#map_canvas {
width: 100%;
}
JS
// On Resize
$(window).resize(function(){
$('#map_canvas').height($( window ).height());
Démo JsFiddle: http://jsfiddle.net/3VKQ8/33/
je pense que le moyen le plus simple sera d’ajouter ce css et il fonctionnera parfaitement.
embed, object, iframe{max-width: 100%;}
Ma solution basée sur la réponse eugenemail:
1. HTML - API Google Maps
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap"></script>
2. HTML - Toile
<div id="map_canvas"></div>
3. CSS - Fond de carte
#map_canvas {
height: 400px;
}
4. JavaScript
function initialize() {
var lat = 40.759300;
var lng = -73.985712;
var map_center = new google.maps.LatLng(lat, lng);
var mapOptions = {
center: map_center,
zoom: 16,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var mapCanvas = document.getElementById("map_canvas");
var map = new google.maps.Map(mapCanvas, mapOptions);
new google.maps.Marker({
map: map,
draggable: false,
position: new google.maps.LatLng(lat, lng)
});
google.maps.event.addDomListener(window, 'resize', function() {
map.setCenter(map_center);
});
}
initialize();
J'ai essayé avec CSS, mais ce n'est jamais à 100% réactif, alors j'ai construit une solution purement javascript. Celui-ci utilise jQuery,
google.maps.event.addDomListener(window, "resize", function() {
var center = map.getCenter();
resizeMap();
google.maps.event.trigger(map, "resize");
map.setCenter(center);
});
function resizeMap(){
var h = window.innerHeight;
var w = window.innerWidth;
$("#map_canvas").width(w/2);
$("#map_canvas").height(h-50);
}
JS
Créez un fichier JavaScript externe (par exemple, mymap.js) avec le code suivant
google.maps.visualRefresh = true; //Optional
var respMap;
function mymapini() {
var mapPos = new google.maps.LatLng(-0.172175,1.5); //Set the coordinates
var mapOpts = {
zoom: 10, //You can change this according your needs
disableDefaultUI: true, //Disabling UI Controls (Optional)
center: mapPos, //Center the map according coordinates
mapTypeId: google.maps.MapTypeId.ROADMAP
};
respMap = new google.maps.Map(document.getElementById('mymap'),
mapOpts);
var mapMarker = new google.maps.Marker({
position: mapPos,
map: respMap,
title: 'You can put any title'
});
//This centers automatically to the marker even if you resize your window
google.maps.event.addListener(respMap, 'idle', function() {
window.setTimeout(function() {
respMap.panTo(mapPos.getPosition());
}, 250);
});
}
google.maps.event.addDomListener(window, 'load', mymapini);
$("#modalOpen").click(function(){ //Use it like <a href="#" id="modalOpen"...
$("#myModal").show(); //ID from the Modal <div id="myModal">...
google.maps.event.trigger(respMap, 'resize');
});
HTML
Ajoutez le code suivant avant la balise:
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script src="js/mymap.js"></script>
Ajoutez ceci au code modal:
<div id="mymap"></div>
CSS
Ajoutez ceci à votre feuille de style:
#mymap { margin: 0; padding: 0; width:100%; height: 400px;}
Ceci est possible grâce à l’événement window.resize
Et vous pouvez l’appliquer sur google map comme google.maps.event.addDomListener(window, 'resize', initialize);
Prenons l'exemple suivant:
function initialize() {
var mapOptions = {
zoom: 9,
center: new google.maps.LatLng(28.9285745, 77.09149350000007),
mapTypeId: google.maps.MapTypeId.TERRAIN
};
var map = new google.maps.Map(document.getElementById('location-canvas'), mapOptions);
var marker = new google.maps.Marker({
map: map,
draggable: false,
position: new google.maps.LatLng(28.9285745, 77.09149350000007)
});
}
google.maps.event.addDomListener(window, 'resize', initialize);
google.maps.event.addDomListener(window, 'load', initialize);