I have an image over a map and I want to give it some linear and rotational motion over the google maps.
How can I do it in GMS? Please help me.
I have an image over a map and I want to give it some linear and rotational motion over the google maps.
How can I do it in GMS? Please help me.
Actually I solved the problem by using following code and GMSMarker method setPosition: . The following code provides rotation to the images and using setPosition: we can place the marker/image anywhere. The combination of both gives required linear and rotational motion.
- (UIImage *)imageRotatedByDegrees:(CGFloat)degrees image: (UIImage*) image
{
CGSize size = image.size;;
UIGraphicsBeginImageContext(size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextTranslateCTM( context, 0.5f * size.width, 0.5f * size.height ) ;
CGContextRotateCTM (context, DegreesToRadians(degrees));
[ image drawInRect:(CGRect){ { -size.width * 0.5f, -size.height * 0.5f }, size } ] ;
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return newImage;
}
You could add the image as a marker and then use the layer property of that marker to add some animations using CoreAnimation
See the docs: developers.google.com/maps/documentation/ios/reference/
It's an easy process. First rotate the marker to get the right heading using this function:
Then rotate your marker to the new heading:
Now, the final step is to animate your driver smoothly