Heading

Focal point for rotating a map view

setHeading

Takes an angle value (in degree) and sets "heading" (focal point) to rotate the map in the desired direction or angle. The default is 0 degree (North)

mapInstance.setHeading(value);

Parameter

Example

mapInstance.setHeading(90);

getHeading

Gets the current focal point (heading) value in angle.

mapInstance.getHeading();

Return

The angle in degree.

Example

mapInstance.getHeading();
return : 90

Last updated