Returns a linearly interpolated point on the segment [a, b], at the fraction t from a. t==0
corresponds to a, t==1 corresponds to b.
The interpolation takes place along the short path between the points potentially crossing the
date line. E.g. interpolating from San Francisco to Tokyo will pass north of Hawaii and cross the
date line.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-11-15 UTC."],[[["`GMSMapPointInterpolate` calculates a point along a line segment between two given points (`a` and `b`) based on a fraction (`t`)."],["When `t` is 0, the function returns point `a`; when `t` is 1, it returns point `b`; values between 0 and 1 represent points along the line segment."],["The interpolation considers the shortest path, even if it crosses the international date line, like a route from San Francisco to Tokyo passing north of Hawaii."]]],["`GMSMapPointInterpolate` calculates a point on the line segment between two points (`a` and `b`). The parameter `t` determines the point's position, where `t`=0 is point `a` and `t`=1 is point `b`. The interpolation follows the shortest path, potentially crossing the international date line. This function returns the linearly interpolated `GMSMapPoint` at the specified fraction `t`.\n"]]