<style>
i {
margin-right:5px;
font-size: 19px;
}
.bouton_contact a {
display: block;
/*border: 4px solid white;*/
width: auto !important;
float: right;
padding: 10px 20px;
background: #cb0a13;
color: white !important;
}
/* Set a size for our map container, the Google Map will take up 100% of this container */
#map {
width: 100%;
height: 350px;
}
.credit_footer {
width: 100%;
border-top: 1px solid rgba(255,255,255,0.4);
padding: 9px 0;
/*margin-top: 15px;*/
padding: 0 20px;
}
.credit_footer span {
float: right;
font-size: 12px;
padding: 10px 0;
}
</style>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js"></script>
<script type="text/javascript">
// When the window has finished loading create our google map below
google.maps.event.addDomListener(window, 'load', init);
function init() {
// Basic options for a simple Google Map
// For more options see: https://developers.google.com/maps/documentation/javascript/reference#MapOptions
var mapOptions = {
// How zoomed in you want the map to start at (always required)
zoom: 14,
// The latitude and longitude to center the map (always required)
center: new google.maps.LatLng(43.708723,7.28825), // New York
// How you would like to style the map.
// This is where you would paste any style found on Snazzy Maps.
styles: [{"featureType":"water","elementType":"geometry","stylers":[{"color":"#e9e9e9"},{"lightness":17}]},{"featureType":"landscape","elementType":"geometry","stylers":[{"color":"#f5f5f5"},{"lightness":20}]},{"featureType":"road.highway","elementType":"geometry.fill","stylers":[{"color":"#ffffff"},{"lightness":17}]},{"featureType":"road.highway","elementType":"geometry.stroke","stylers":[{"color":"#ffffff"},{"lightness":29},{"weight":0.2}]},{"featureType":"road.arterial","elementType":"geometry","stylers":[{"color":"#ffffff"},{"lightness":18}]},{"featureType":"road.local","elementType":"geometry","stylers":[{"color":"#ffffff"},{"lightness":16}]},{"featureType":"poi","elementType":"geometry","stylers":[{"color":"#f5f5f5"},{"lightness":21}]},{"featureType":"poi.park","elementType":"geometry","stylers":[{"color":"#dedede"},{"lightness":21}]},{"elementType":"labels.text.stroke","stylers":[{"visibility":"on"},{"color":"#ffffff"},{"lightness":16}]},{"elementType":"labels.text.fill","stylers":[{"saturation":36},{"color":"#333333"},{"lightness":40}]},{"elementType":"labels.icon","stylers":[{"visibility":"off"}]},{"featureType":"transit","elementType":"geometry","stylers":[{"color":"#f2f2f2"},{"lightness":19}]},{"featureType":"administrative","elementType":"geometry.fill","stylers":[{"color":"#fefefe"},{"lightness":20}]},{"featureType":"administrative","elementType":"geometry.stroke","stylers":[{"color":"#fefefe"},{"lightness":17},{"weight":1.2}]}]
};
// Get the HTML DOM element that will contain your map
// We are using a div with id="map" seen below in the <body>
var mapElement = document.getElementById('map');
// Create the Google Map using our element and options defined above
var map = new google.maps.Map(mapElement, mapOptions);
// Let's also add a marker while we're at it
var marker = new google.maps.Marker({
position: new google.maps.LatLng(43.708723,7.28825),
map: map,
title: 'Snazzy!'
});
}
</script>
<div class="row footer_contact">
<div class="col-md-12">
<div class="col-md-9">
<div id="map"></div>
</div>
<div class="col-md-3">
<h3>Service Culture-Arts, Direction de la Culture</h3>
<h4>Campus Saint Jean d'Angély, Bâtiment 1 - niveau 2</h4>
<h4>24 avenue des Diables Bleus 06300 NICE</h4>
<p><i class="pe-7s-call"></i>04 89 88 14 25</p>
<div class="bouton_contact"><A HREF="mailto:culture.arts@unice.fr">Contactez-nous</A></div>
</div>
</div>
<div class="row credit_footer"><span>Copyright 2017 - culture arts - universite nice sophia antipolis</span></div>
</div>