I am using the Google Maps SDK in xCode and am trying to scale the marker icon to make it bigger on mapView.
I am trying to do something like this:
marker.icon.scale = 3.0f;
But it gives me:
readonly error value assignment
Obviously, since it is read-only, I cannot write to it.
Therefore, is there an alternative for resizing or scaling a marker icon?
Pangu source
share