I am using Google Maps SDK in xCode and trying to scale a marker icon to make it bigger on the mapView.
I am trying to do something like this:
marker.icon.scale = 3.0f;
But it gives me a:
assignment to readonly property error
Obviously since it's readonly, I cannot write to it.
Therefore, is there an alternative to be able to resize or scale my marker icon?