Browse Source

use atlas api for timezone lookup

pull/10/head
Aaron Parecki 8 years ago
parent
commit
7e5cfc2e3e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/helpers.php

+ 1
- 1
lib/helpers.php View File

@ -69,7 +69,7 @@ function parse_geo_uri($uri) {
function get_timezone($lat, $lng) { function get_timezone($lat, $lng) {
try { try {
$ch = curl_init(); $ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://timezone-api.geoloqi.com/timezone/'.$lat.'/'.$lng);
curl_setopt($ch, CURLOPT_URL, 'http://atlas.p3k.io/api/timezone?latitude='.$lat.'&longitude='.$lng);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch); $response = curl_exec($ch);
$tz = @json_decode($response); $tz = @json_decode($response);

Loading…
Cancel
Save