4
A
回答
10
這實際上很容易做到。只需將事件處理程序附加到您的標記,然後通過將window.location.href
設置爲您的URL來啓動該鏈接。看看下面的例子,我想這應該是不言而喻的:
使用v3 API:在
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Google Maps Marker as a Link</title>
<script src="http://maps.google.com/maps?file=api&v=2&sensor=false"
type="text/javascript"></script>
</head>
<body onunload="GUnload()">
<div id="map" style="width: 500px; height: 400px;"></div>
<script type="text/javascript">
var map = new GMap2(document.getElementById("map"));
var centerPoint = new GLatLng(35.55, -25.75);
map.setCenter(centerPoint, 2);
var marker = new GMarker(map.getCenter());
marker.url = 'http://www.google.com/';
map.addOverlay(marker);
GEvent.addListener(marker, 'click', function() {
window.location.href = marker.url;
});
</script>
</body>
</html>
以上的例子將添加標記的地方:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Google Maps Marker as a Link</title>
<script src="http://maps.google.com/maps/api/js?sensor=false"
type="text/javascript"></script>
</head>
<body>
<div id="map" style="width: 500px; height: 400px;"></div>
<script type="text/javascript">
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 2,
center: new google.maps.LatLng(35.55, -25.75),
mapTypeId: google.maps.MapTypeId.ROADMAP
});
var marker = new google.maps.Marker({
position: map.getCenter(),
url: 'http://www.google.com/',
map: map
});
google.maps.event.addListener(marker, 'click', function() {
window.location.href = marker.url;
});
</script>
</body>
</html>
使用V2 API大西洋。當你點擊它時,你會被轉發到一個流行的搜索引擎。
2
爲了得到這個在新標籤中打開添加正確後, 「window.location.href = marker.url;」 以下內容:
window.open(this.url, '_blank');
所以你會:
google.maps.event.addListener(marker, 'click', function() {
window.location.href = marker.url;
window.open(this.url, '_blank');
});
相關問題
- 1. 谷歌地圖標記作爲鏈接
- 2. 谷歌地圖外部標記鏈接
- 3. 鏈接標記到URL谷歌地圖
- 4. 谷歌地圖自定義標記鏈接不工作
- 5. 打開谷歌地圖標記從地圖之外的鏈接
- 6. 谷歌地圖標記鏈接低於地圖
- 7. 外部谷歌地圖鏈接到標記中心地圖
- 8. 谷歌地圖標記出現在本地頁面鏈接
- 9. 谷歌地圖與標籤的鏈接
- 10. 谷歌地圖多個標記信息窗口從創建一個谷歌地圖標記的外部鏈接
- 11. href鏈接谷歌地圖
- 12. 谷歌地圖鏈接
- 13. 谷歌地圖 - 多標記
- 14. 標記在谷歌地圖
- 15. RxJS谷歌地圖標記
- 16. 谷歌地圖標記
- 17. 谷歌地圖標記url
- 18. 谷歌地圖 - 多標記
- 19. 谷歌地圖API標記
- 20. android谷歌地圖標記
- 21. 谷歌地圖標記infowindow
- 22. 谷歌地圖標記DROP
- 23. 谷歌地圖:getSelected標記
- 24. 到標記谷歌地圖
- 25. 谷歌地圖標記
- 26. 谷歌地圖xml標記
- 27. 谷歌地圖API標記
- 28. 角谷歌地圖標記
- 29. 谷歌地圖標記
- 30. 在谷歌地圖標記
謝謝老兄! – 2010-06-17 07:41:56
嘿+1已添加,但如果你想在新窗口中打開此鏈接,我試過window.open = marker.url;然後像 這樣的屬性url:「http://www.google.com」, target:「_blank」到標記對象但無濟於事, – defau1t 2011-12-18 20:24:00