我正在尝试更改谷歌地图中的标记图标。但这似乎不起作用:/你们中的任何人有任何提示如何更改标记图标吗?
这是javascript代码:
/*
Google maps
*/
jQuery(document).ready(function() {
var latlng = new google.maps.LatLng(50.92133, 6.92879);
$('.map').gmap({'center': latlng,'zoom': 15, 'disableDefaultUI':true, 'callback': function() {
var self = this;
google.maps.Icon ic;
ic = new google.maps.Icon({
url: 'icon.png'
});
self.setIcon(marker);
self.addMarker({ 'position': this.get('map').getCenter() });
}
});
});