我在http://jsfiddle.net/doktormolle/jcHqt/上有一个教程 它是一个谷歌地图与静态地图标记问题是我试图用我自己的标记替换标记问题是当我尝试这样做时,标记完全消失。任何导致这个问题的建议。
body,html,#map_canvas{height:100%;margin:0;}
#map_canvas .centerMarker{
position:absolute;
/*url of the marker*/
background:url(http://cdn1.iconfinder.com/data/icons/Map-Markers-Icons-Demo-PNG/128/Map-Marker-Marker-Outside-Azure.png) no-repeat;
/*center the marker*/
top:50%;left:50%;
z-index:1;
/*fix offset when needed*/
margin-left:-10px;
margin-top:-34px;
/*size of the image*/
height:34px;
width:20px;
cursor:pointer;
}
答案 0 :(得分:1)
由于您自己的标记大小为128x128像素,因此您应将css大小设置为:
height: 128px;
width: 128px;
也许边际也应该调整。