我在使用Google地图标记时遇到问题。我想要一个圆形图像作为地图的图钉。环顾四周后,似乎不可能。所以我想知道我是否可以改变下面的内容(适用于在地图上放置方形图像)并在之前裁剪图像将其提供给iconimage对象?所以我拍摄图像,将其剪切成形,然后将其作为图标图像。
任何帮助都会很棒!
由于
angular.forEach(data, function(data){
var iconimage = {
url: "https://graph.facebook.com/"+data.facebookid+"/picture?type=small",
size: new google.maps.Size(32, 32),
origin: new google.maps.Point(0,0),
optimized: false
};
var friendPin = new google.maps.Marker({
position: new google.maps.LatLng(data.location.latitude,data.location.longitude),
map: googleMap.map,
icon: iconimage,
});
friendPin.setMap(googleMap.map);
});