标记不在地图api V3中显示

时间:2013-03-25 12:08:04

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

为什么我的标记没有出现?
我也试过没有“marker.show”这一行,但标记似乎没有出现。

<html><head><meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Google Maps JavaScript API v3 Example: Custom Control</title>
<script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=false">    </script>
<script type="text/javascript" src="ZoomPanControl.js"></script>
<script type="text/javascript">
function initialize() {  
    var myOptions = {  
        zoom: 10,  
        center: new google.maps.LatLng(47.3732589, 8.2382168),  
        mapTypeId: google.maps.MapTypeId.ROADMAP,  
        navigationControl: true }  
    var map = new google.maps.Map(document.getElementById('map_canvas'), myOptions);  
    var marker = new google.maps.Marker({ position: google.maps.LatLng(47.3732589, 8.2382168), title: 'x', map:map});  
    marker.show;  
};
</script></head>  
<body style="margin:0px; padding:0px;" onload="initialize()">  
<div id="map_canvas" style="width:100%; height:100%"></div>  
</body></html>  

2 个答案:

答案 0 :(得分:6)

这应该可以解决问题:

var marker = new google.maps.Marker();
marker.setPosition(new google.maps.LatLng(47.3732589, 8.2382168));
marker.setMap(map);

答案 1 :(得分:4)

您已离婚,但在添加new时忘记了position关键字。它应该是这样的:

var marker = new google.maps.Marker({ position: new google.maps.LatLng(47.3732589, 8.2382168), title: 'x', map:map});
相关问题