谷歌地图标记的问题

时间:2012-08-15 13:36:08

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

正如您在test.php看到的那样,标记工作正常。 但是当我缩放地图以获得更好的概览时,标记会向北移动??? 如果我放大很多,标记移动到北海:-( 这是一个已知的错误?或者我做错了什么?

<!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 = '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>

1 个答案:

答案 0 :(得分:1)

默认anchor point for an icon(如果您没有定义,则会获得此默认值)位于图像的底部中心。

您需要使用MarkerImage的实例完全指定图标。

仅供参考 - 您的图标似乎会移动,因为标志底部和图像底部之间有很多空白区域(这是当前锚定的位置)。