2012-12-09 2 views
0

맞춤 마커가있는 Google지도를 만들었습니다.Google지도 API 3/javascript : 마커가 갑자기 보이지 않습니다.

프로젝트는 10 개월 이후 온라인 상태입니다. 모든 것이 잘 작동하고 갑자기 모든 맞춤 마커가 보이지 않게되었습니다.

전에,지도는 다음과 같이이었다 : 나는 최근에 코드를 변경하지 않았다

enter image description here

. 백업본을 복원했는데 문제가 아직 남아 있습니다.

무슨 일이 일어나는지 이해할 수 있도록 도와 줄 수 있습니까?

Click here to see the google map project online.

는 단순히지도 (Invisibles_décalcomanie의 XX)의 하단에있는 링크를 클릭,지도를 사용합니다. 링크는지도를 좌표로 이동합니다.

나는 뭔가를 알아 차렸다. 마커는 사용자가지도를 축소하면 볼 수 있습니다 (그림 참조). 그러나 그들은 잘못된 장소에서하고있는 경우 사용자 줌 사라집니다. 그것은 버그

Google map issue, no markers can be seen

인가? 내 코드가 잘못되었을 수도 있습니다. 또는 최근에 Google이 API를 변경했습니다.

자바 스크립트 코드 (소스 코드의 맨 아래에있는 데모에 볼 수 있습니다) :

var markerArray = []; 

    function initialize() { 

    // Tableau images avatars 
    var myLatlng = [ 
    // Ligne vide sinon décalage dans la boucle pour remplir tableau locations 
     [47.263167,-1.579706,300,201,300,201], 
     [47.264108,-1.575928,134,201,300,201], 
     [47.265203,-1.581125,300,201,300,201], 
     [47.259506,-1.568975,300,201,300,201], 
     [47.254894,-1.565697,300,201,300,201], 
     [47.254617,-1.576264,300,201,134,201], 
     [47.261639,-1.571083,300,201,300,201], 
     [47.253819,-1.574989,300,201,300,201], 
     [47.256592,-1.575986,300,201,300,201],//9 
     [47.259722,-1.575022,300,201,180,201],//10 
     [47.262311,-1.577317,300,201,300,201],//11 
     [47.258419,-1.566647,300,201,300,201],//12 
     [47.26115,-1.570781,300,201,300,201],//13 
     [47.261325,-1.566986,300,201,300,201],//14 
     [47.260411,-1.565275,300,201,300,201],//15 
     [47.255786,-1.571194,300,201,300,201],//16 
     [47.252592,-1.568464,300,201,300,201],//17 
     [47.261639,-1.582647,300,201,300,201],//18 
     [47.255919,-1.569056,300,201,300,201],//19 
     [47.260525,-1.574483,300,201,300,201],//20 
     [47.25915,-1.566611,300,201,300,201],//21 
     [47.264331,-1.576933,300,201,300,201],//22 
     [47.257569,-1.576986,300,201,300,201],//23 
     [47.258964,-1.578256,300,201,300,201],//24 
     [47.260611,-1.563364,300,201,300,201],//25 
     [47.252789,-1.566597,300,201,300,201],//26 
     [47.253031,-1.569664,300,201,300,201],//27 
     [47.258797,-1.573606,300,201,300,201],//28 
     [47.261233,-1.573161,300,201,300,201],//29 
     [47.264911,-1.578775,300,201,300,201],//30 
     [47.265519,-1.578975,300,201,300,201],//31 
     [47.264847,-1.575,300,201,300,201],//32 
     [47.258528,-1.568064,300,201,300,201],//33 en attente erreur 
     [47.261619,-1.572919,300,201,300,201],//34 
     [47.261642,-1.573192,300,201,300,201],//35 
     [47.263653,-1.578083,300,201,300,201] 
    ]; 

     // contient le html 
     var locationsInfos; 
     //Tableau contient les infos relatives au markeurs, etc. 
     var locations = []; 

     //Boucle pour remplir le tableau 
     for (j = 0; j < 35; j++) { 
     //alert(myLatlng[j][2]); 
     //alert('width : '+myLatlng[j][2]); 

     locationsInfos = '<div class="popup">Arnaud Théval<br/>Invisibles_décalcomanie '+j+'/36<br/>2012<br/><a href="http://www.arnaudtheval.com/1-46-invisibles-decalcomanie.php" target="_blank" >en savoir +</a><br/><br/><a href="google-map/img/photos/THEVAL-decalcomanie-'+j+'a.jpg" class="fancybox" title="Invisibles_décalcomanie '+j+'" ><img src="google-map/img/THEVAL-decalcomanie-'+j+'a.jpg" width="'+myLatlng[j][2]+'" height="'+myLatlng[j][3]+'"/></a><a href="google-map/img/photos/THEVAL-decalcomanie-'+j+'b.jpg" class="fancybox" title="Invisibles_décalcomanie '+j+'"><img class="image_2" src="google-map/img/THEVAL-decalcomanie-'+j+'b.jpg" width="'+myLatlng[j][4]+'" height="'+myLatlng[j][5]+'"/></a></div>'; 

     //On remplit le tableau 
     locations.push([locationsInfos, myLatlng[j][0], myLatlng[j][1], 4,'google-map/img/'+j+'-avatar.png']); 
    };// en of loop 

    var map = new google.maps.Map(document.getElementById('map'), { 
     zoom: 14, 
     center: new google.maps.LatLng(47.259981,-1.575233, 4), 
      mapTypeControl: true, 
     mapTypeControlOptions: { 
     style: google.maps.MapTypeControlStyle.DROPDOWN_MENU 
    }, 
    navigationControl: true, 
    navigationControlOptions: { 
     style: google.maps.NavigationControlStyle.SMALL, 
     position: google.maps.ControlPosition.TOP_RIGHT 
    }, 
     scaleControl: true, 
    streetViewControl: false, 
     mapTypeId: google.maps.MapTypeId.ROADMAP 
    }); 

    var infowindow = new google.maps.InfoWindow(); 

    var marker, i; 

    //var point = 0; 

    // Boucle création marqueurs 
    // Loop create markers 
    for (i = 0; i < locations.length; i++) { 
     marker = new google.maps.Marker({ 
     position: new google.maps.LatLng(locations[i][1], locations[i][2]), 
     icon: new google.maps.MarkerImage(locations[i][4], new google.maps.Size(60,130), new google.maps.Point(0,0), new google.maps.Point(0, 150)), 
     map: map 
     }); 

     // Tableau : on stock les objets markers 
     // Array : markers object 
     markerArray.push(marker); 

     google.maps.event.addListener(marker, 'click', (function(marker, i) { 
     return function() { 
      infowindow.setContent(locations[i][0]); 
      infowindow.open(map, marker); 
     } 
     })(marker, i)); 
    } 

    // test 

    google.maps.event.addListener(map, 'click', function() { 
      infowindow.close(); 
      infowindow.close(map, marker); 
     }); 

    } 

    // This function picks up the click and opens the corresponding info window 
    function openMarker(i) {   
     //To force the click, 
     //you need to call google.maps.event.trigger 
     //which takes two params (instance, event) 
     google.maps.event.trigger(markerArray[i], 'click'); 
     //map.setCenter(marker.position); 
} 

답변

4

지도는 구글지도 API V3, the "released" version의 V3.10을 사용하고 있습니다. 한 번 "릴리스"버전이 된 마커에 대한 많은 문제가있었습니다. 테스트로서 버전을 3.9로 하드 코딩 해보십시오. v3.9 영원히 사라질 약 6 개월로,

<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script> 

이이 issue (스타 또는를 한 기존) 인상하시기 바랍니다 작동하는 경우

<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?v=3.9&sensor=false"></script> 

에 :이를 위해이 줄을 변경 (3.10이 "고정"될 때).

은을 MarkerImage 클래스는 또한 최근에 사용되지 않습니다

"Icon" object

+0

니스로 대체! 버전을 3.9로 하드 코딩하는 것은 해결책입니다. http://www.reflexion-graphic.com/projets/google-map/google-map-fancybox.html –

+0

"아이콘"개체로 코드를 수정합니다. –

관련 문제