我的地图显示完美,我唯一缺少的是标记和标题。有人可以查看我的代码,看看为什么我的标记没有显示出来吗?
我的代码;
<script type="text/javascript">
function initialize() {
var mapOptions = {
center: new google.maps.LatLng(55.6078568,13.0126611),
zoom: 16,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("google_map_392"),
mapOptions);
var point = new google.maps.LatLng(55.6078568,13.0126611)
var marker = new google.maps.marker({
position:point,
map:map,
});
}
</script>
谢谢!
答案 0 :(得分:4)
标记是一个对象构造函数,因此您需要使用正确的(大写)名称:
var marker = new google.maps.Marker();
这将在地图上创建标记,但如果您希望它有标题,那么您还需要添加“标题”属性:
function initialize() {
var mapOptions = {
center: new google.maps.LatLng(55.6078568, 13.0126611),
zoom: 16,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("google_map_392"), mapOptions);
var point = new google.maps.LatLng(55.6078568, 13.0126611);
var marker = new google.maps.Marker({
position: point,
map: map,
title: "The title for the marker."
});
}