I have set car as a marker and want to rotate it. Is there any way to rotate it in the defined code. If not, what other options do I have?
handler = Gmaps.build('Google');
handler.buildMap({
provider: {},
internal: {
id: "map"
}
}, function() {
marker = handler.addMarkers([{
lat: lat,
lng: lng,
"picture": {
"url": "/assets/car.png",
"width": 17,
"height": 38
}
}]);
});