jQuery(document).ready(function() {
const mapa = document.querySelector('#mapaGoogle')
calculaTamano = ()=>{
switch(true){
case window.innerWidth > 1400:
divisor = 2
padding = 30
break
default:
divisor = 1
padding = 40
break
}
anchoMapa = (window.innerWidth/divisor) - padding
altoMapa = anchoMapa/1.45
mapa.width= anchoMapa
mapa.height= altoMapa
console.log(divisor)
}
calculaTamano()
window.addEventListener('resize', calculaTamano)
})
/**** Caso de mas de un mapa y ajusta margen
* según tamaño pantalla
* ***/
jQuery(document).ready(function() {
const mapa = document.querySelectorAll('.mapaGoogle')
let margenLateral = 0, anchoTotal = 0
calculaTamano = ()=>{
mapa.forEach((n)=>{
anchoTotal = window.innerWidth
switch(true){
case (anchoTotal >1000):
margenLateral = 600
break
case (anchoTotal < 1000 && anchoTotal > 600):
margenLateral = 400
break
case (anchoTotal < 600 && anchoTotal > 400):
margenLateral = 50
break
default:
margenLateral = 10
break
}
n.width= window.innerWidth - margenLateral
n.height= n.width/1.45
})
}
calculaTamano()
window.addEventListener('resize', calculaTamano)
})