在谷歌地图中插入标记

时间:2015-11-26 12:57:24

标签: javascript google-maps

如何在谷歌地图中自定义标记插入 该标记是在HTML页面中创建的,如何插入谷歌地图 请发布答案。 如何在谷歌地图中自定义标记图像插入 该图像是在HTML页面中创建的,如何插入谷歌地图 请发布答案。

1 个答案:

答案 0 :(得分:0)

试试这段代码: -

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

    <script>
    var myCenter=new google.maps.LatLng(51.508742,-0.120850);

    function initialize()
    {
    var mapProp = {
      center:myCenter,
      zoom:5,
      mapTypeId:google.maps.MapTypeId.ROADMAP
      };

    var map=new google.maps.Map(document.getElementById("googleMap"),mapProp);

    var marker=new google.maps.Marker({
      position:myCenter,
      });

    marker.setMap(map);
    }

    google.maps.event.addDomListener(window, 'load', initialize);
    </script>
    </head>

    <body>
    <div id="googleMap" style="width:500px;height:380px;"></div>
    </body>
    </html>

为您的Lat Lng

更改此设置
myCenter=new google.maps.LatLng(51.508742,-0.120850);

More details