function initMap(location) {
var map = L.map('map').setView(location, 3);
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '© OpenStreetMap contributors'
}).addTo(map);
L.marker(location).addTo(map);
//.bindPopup('A pretty CSS3 popup.
Easily customizable.')
//.openPopup();
}