PHP谷歌地图 - 位置红色气球未显示

时间:2016-05-16 17:12:13

标签: javascript php api google-maps

我有以下代码来显示我的家。但是在我的网页上,它只显示了我的城市。虽然我从显示的URL中使用了正确的高度和经度,但它没有具体显示我的位置;

我想要这样;

I want image

但现在它显示了这样;

now image

这是我的代码;

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

    <script>
        function initialize(){
            var mapProp = {
                center:new google.maps.LatLng(6.2422975,80.0603382),//latitude and longitude respectively
                zoom:13,
                mapTypeId:google.maps.MapTypeId.ROADMAP
            };
            var map = new google.maps.Map(document.getElementById("googleMap"), mapProp);
        }
        google.maps.event.addDomListener(window, 'load', initialize)
    </script>
</head>
<body>
    <div id="googleMap" style="width:680px;height:400px;"> </div>
</body>

1 个答案:

答案 0 :(得分:0)

您正在定义地图,但您没有为地图定义标记。

https://developers.google.com/maps/documentation/javascript/markers