2014-12-23 173 views
-2

我嘗試了很多小時,只要地圖顯示,並且當然沒有點擊標記,就會自動打開infowindow的標記。 我讀了很多帖子,但不幸的是我無法找到解決方案。顯示infowindow的標記沒有點擊

我正在尋找這樣的事情:

google.maps.event.addListener(marker, 'onLoad', function() {infoWindow.open(map,marker);}); 

不過,這並不存在,存在的API沒有這樣的事件。

請問有人可以幫我解決這個問題嗎?

謝謝!

回答

0

更簡單:

var infoWindow = new google.maps.InfoWindow({content: contentMarker, position: latlng}); infoWindow.open(map,marker); 
0

很簡單:

<!DOCTYPE html> 
<html> 
<head> 
<script 
src="http://maps.googleapis.com/maps/api/js"> 
</script> 

<script> 
var myCenter=new google.maps.LatLng(51.508742,-0.120850); 

function initialize() 
{ 
var mapProp = { 
    center:myCenter, 
    zoom:5, 
    mapTypeId:google.maps.MapTypeId.ROADMAP 
    }; 

var map=new google.maps.Map(document.getElementById("googleMap"),mapProp); 

var marker=new google.maps.Marker({ 
    position:myCenter, 
    }); 

marker.setMap(map); 
var infowindow = new google.maps.InfoWindow({ 
    content:"Hello World!" 
    }); 

infowindow.open(map,marker); 
} 

google.maps.event.addDomListener(window, 'load', initialize); 
</script> 
</head> 

<body> 
<div id="googleMap" style="width:500px;height:380px;"></div> 
</body> 
</html>