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
| <html>
<head>
<script type="text/javascript" src="jquery/jquery-1.4.4.min.js"></script>
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
<script type="text/javascript" src="gmap3.js"></script>
<style>
.gmap3{
margin: 20px auto;
border: 1px dashed #C0C0C0;
width: 500px;
height: 400px;
}
</style>
<script type="text/javascript">
$(function(){
$('#maCarte').gmap3(
{
action: 'addMarker',
address: "place de l'étoile, Paris",
map:{
center: true,
zoom: 14
},
marker:{
options:{
draggable: false
}
},
infowindow:{
options:{
content: 'Hello World !<br>suite ...'
},
events:{
closeclick: function(){
alert("closing : " + $(this).attr("id"));
}
}
}
});
});
</script>
<body>
<div id="maCarte" class="gmap3"></div>
</body>
</html> |
Partager