谷歌地图api:如何将我自己的标记添加到地图?

时间:2012-08-07 12:02:39

标签: javascript google-maps-api-3 google-maps-markers

第一:英语不是我的语言,但我尝试: - )

我喜欢有带标记的地图。 没有标记的地图工作正常,您可以在此处查看:map without markers

代码很简单:

<!DOCTYPE html>
<html>
<head>
<title>MyRange Driving Ranges world wide </title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=yes" />

<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 30px; padding: 0px }
#map_canvas { height: 80% }
</style>
<script type="text/javascript"
src="https://maps.google.com/maps/api/js?sensor=true">
</script>
<script type="text/javascript">
function initialize() {
var latlng = new google.maps.LatLng(51.1601369818597, 6.72036588191986);
var myOptions = {
  zoom: 16,
  center: latlng,
  mapTypeId: google.maps.MapTypeId.HYBRID
};
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

//var image = 'http://myrange.de/support/images/flag_red_big.png';
//var myLatLng = new google.maps.LatLng(51.1601369818597, 6.72036588191986));
//var golfMarker = new google.maps.Marker({ position: myLatLng,map: map, icon: image });
}
</script>
</head>
<body onload="initialize()">
<div align="center" id="map_canvas" style="width:100%; height:100%"></div>
</body>
</html>

一切正常。如果我删除//比我得到一个空屏幕:-( 这3行有什么问题?

var image = 'http://myrange.de/support/images/flag_red_big.png';
var myLatLng = new google.maps.LatLng(51.1601369818597, 6.72036588191986));
var golfMarker = new google.maps.Marker({ position: myLatLng,map: map, icon: image });

我希望你能理解我的“英语”

来自德国的问候 hape42

1 个答案:

答案 0 :(得分:4)

您的代码在行

处中断
var myLatLng = new google.maps.LatLng(51.1601369818597, 6.72036588191986));
它有一个额外的结束括号。纠正它,它会工作。 来自印度的问候巴迪.. :)