|
Maps SDK for C++ 1.0.0
|
Resolves timezone information by location. More...


Public Member Functions | |
| TimezoneService (const TimezoneService &)=delete | |
| TimezoneService (TimezoneService &&)=default | |
| Default move constructor noexcept is deduced. | |
| TimezoneService & | operator= (const TimezoneService &timezone)=delete |
| TimezoneService & | operator= (TimezoneService &&timezone)=default |
| Default move assignment noexcept is deduced. | |
| int | getTimezoneInfo (TimezoneResult &timezoneResult, const Coordinates &coords, Time time, ProgressListener listener, bool accurateResult=false) const noexcept |
| Async returns the timezone info with coordinates and a timestamp. | |
| int | getTimezoneInfo (TimezoneResult &timezoneResult, const String &timezoneId, Time time, ProgressListener listener, bool accurateResult=false) const noexcept |
| Async returns the timezone info with coordinates and a timestamp. | |
Resolves timezone information by location.
Implements share-read / write Api object over ITimezone.
This behaves like a singleton, i.e. all instances are sharing behind the same API interface.
Maps geographic coordinates to timezone data, supporting time-aware navigation and scheduling features.
|
inlinenoexcept |
Async returns the timezone info with coordinates and a timestamp.
| [out] | timezoneResult | The result Timezone object |
| [in] | coords | The location from where to get the timezone result |
| [in] | time | The time for which offsets are calculated (UTC) |
| [in] | listener | Operation progress listener. Returns:
|
| [in] | accurateResult | - if left 'false' the result will be computed using the available offline resource. If 'true' an HTTP request will be performed for computing the result. |
|
inlinenoexcept |
Async returns the timezone info with coordinates and a timestamp.
| [out] | timezoneResult | The result Timezone object |
| [in] | timezoneId | The geographic location on earth of type: "Continent/City" |
| [in] | time | The time for which offsets are calculated (UTC) |
| [in] | listener | Operation progress listener. Returns:
|
| [in] | accurateResult | - if left 'false' the result will be computed using the available offline resource. If 'true' an HTTP request will be performed for computing the result. |
|
default |
Default move assignment noexcept is deduced.
| timezone | The TimezoneService object to move |