Bonjour, si quelqu'un pouvais me dire comment faire pour modifier mon marker dans une api goolgle.
Voici le code j 'ai essayé ceci mais un avis serait bienvenue
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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 function initCarte() { var i, nb = data.length; var oMarker = new GIcon(G_DEFAULT_ICON, "/IMG/IMP.PNG"), var oMap = new google.maps.Map(document.getElementById('div_carte'),{ 'center': new google.maps.LatLng( 49,2), 'zoom': 5, 'backgroundColor': '#fff', 'mapTypeId': google.maps.MapTypeId.ROADMAP }); for( i=0; i < nb; i++){ oMarker = new google.maps.Marker ({ 'map' : oMap, 'position': new google.maps.LatLng( data[i][0], data[i][1]) }); } } // init lorsque la page est chargée google.maps.event.addDomListener(window, 'load', initCarte); </script> </head> <body> <div id="div_carte"></div> </body> </html>
Merci
Partager