The ThinkGeo Cloud Time Zones service provides a RESTful API to retrieve time zone and UTC offset information for a given spatial coordinate. Check out the online sample for a quick look.
* Try it Online: The ThinkGeo Cloud Time Zones RESTful API can be tested online following the instructions below:
ThinkGeo Cloud Time Zones provides the following Restful APIs:
Returns information about a local time zone for the specified point, including the Olson time zone ID, country code, UTC offset, current local time and more.
HTTP GET https://cloud.thinkgeo.com/api/v1/timezones/{pointY},{pointX}
URL Parameters
Visit https://cloud.thinkgeo.com/help/#/TimeZone/GetTimeZonesByCoordinateV1 and click “Try It Out” to explore this API online.
Example Output
{ "timezone": "Asia/Bangkok", "countryName": "Thailand", "countryCode": "TH", "comment": "", "currentLocalTime": "2019-03-31T23:16:26.1379980", "currentUtcTime": "2019-03-31T16:16:26.1379980Z", "offsetSeconds": 25200 }
ThinkGeo Cloud Time Zones does not allow anonymous users to access the API. Before working with these APIs, you will need to register with ThinkGeo Cloud and create your own clients. A new account come with two clients: NativeConfidential and JavaScript. See more details at here.
ThinkGeo Cloud provides standard RESTful APIs which can be consumed in any platform through any language. ThinkGeo also offers two prepackaged API clients to make it easier to integrate into .NET and JavaScript applications.
The SDK for .NET enables developers to build .NET applications that use the ThinkGeo Cloud services. The NuGet package can be found at ThinkGeo.Cloud.Client or you can install this package with PM by running the command: Install-Package ThinkGeo.Cloud.Client -Version VERSION_TO_BE_INSTALLED
, here is the complete API List. Also you can check out the ThinkGeoCloudSample for a start.
The SDK for JavaScript enables developers to directly access ThinkGeo Cloud services from JavaScript code running in brower. This SDK can be found at thinkgeocloudclient-js.