如何在谷歌地图中自定义标记插入 该标记是在HTML页面中创建的,如何插入谷歌地图 请发布答案。 如何在谷歌地图中自定义标记图像插入 该图像是在HTML页面中创建的,如何插入谷歌地图 请发布答案。
答案 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);