0
我有工作的PHP腳本,在變量中存儲公司的名稱和地址。然後我這樣回顯:Gmap3:如何給標記添加標題?
$(document).ready(function() {
$("#map").gmap3({
marker:{
address: "<?echo $coord;?>"
},
map:{
options:{
zoom:15,
mapTypeControl: true,
navigationControl: true,
scrollwheel: true,
streetViewControl: true
}
}
});
});
我該如何添加公司名稱以顯示在標記下方?例如:this?
我嘗試添加:
marker:{
address: "<?echo $coord;?>"
title: "<?echo $com_name;?>"
}
但是,這是行不通的。
謝謝。