1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="./js/jquery.js"></script>
<script type="text/javascript" src="./js/jquery.carrousel.js"></script>
<!--jCarousel library-->
<script type="text/javascript" src="./js/carrousel/jquery.jcarousel.pack.js"></script>
<!--jCarousel core stylesheet-->
<link rel="stylesheet" type="text/css" href="./js/carrousel/jquery.jcarousel.css" />
<!--jCarousel skin stylesheet-->
<link rel="stylesheet" type="text/css" href="./css/carrousel/skin.css" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript">
var latitude = "";
var longitude = "";
function addLoadEvent(lat,lon)
{
latitude = lat;
longitude = lon;
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "http://maps.google.com/maps/api/js?sensor=false&callback=initialize&lati="+lat+"&longi="+lon;
adresse = "http://maps.google.com/maps/api/js?sensor=false&callback=initialize&lati="+lat+"&longi="+lon;
document.body.appendChild(script);
}
function initialize()
{
var latlng = new google.maps.LatLng(latitude , longitude);
var myOptions = {
zoom: 12,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
var marker = new google.maps.Marker({
position: latlng,
map: map,
title: "personne"
});
// affichage des informations se rapportant au technicien.
var infowindow = new google.maps.InfoWindow({
content: "<?php echo "<b>".$result[0]->nom_emp.' '.$result[0]->prenom_emp .'</b><br />Tel.: '.$result[0]->numtel_emp ; ?>"
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker)
});
var cercle = new google.maps.Circle({ // créer un cercle autour du marqueur
center: latlng, // position du marqueur
map: map, // style de carte
fillColor: "#0066CC", // Couleur de l'intérieur du cercle
strokeColor: "#0033CC", // Couleur du rebord
strokeWeight: 2, // Épaisseur du rebord
radius:2000 // Distance en mètre par rapport au centre trouvé(ici 2km)
});
}
</script>
</head>
<body>
<div class="global">
<a href="index.php" class="lien"></a>
<div id="menu_top"><?php require_once('menu/menu_haut.php'); ?></div>
<div class="sousmenu"></div>
<div id="menu_gauche"><?php require_once('menu/menu_gauche.php'); ?></div>
<div id="contenu">
</div>
</div>
<div id="footer">
Ce qu'on peut mettre dans un footer ^^
</div>
</body>
</html> |
Partager