Git Product home page Git Product logo

Comments (4)

simplenotezy avatar simplenotezy commented on July 19, 2024

I am using the telize driver and I notice this response originates all the way back from Telize. For some reason, guzzle must be sending some locale information that Telize respects, and then converts the lat/lng. Is there some way I can force telize/guzzle to return data in a specific locale?

from geoip.

simplenotezy avatar simplenotezy commented on July 19, 2024

Inside the TelizeDriver, something like this would work, but it seems like a hack, and there should be another way to get around it:

/**
 * Get array of data using telize.
 *
 * @param string $ip
 *
 * @return array
 */
public function get($ip)
{
    $data = $this->getRaw($ip);

    if (empty($data)) {
        return $this->getDefault();
    }

    return [
        'city' => array_get($data, 'city'),
        'country' => array_get($data, 'country'),
        'countryCode' => array_get($data, 'country_code'),
        'latitude' => (float)number_format(array_get($data, 'latitude'), 5),
        'longitude' => (float)number_format(array_get($data, 'longitude'), 5),
        'region' => array_get($data, 'region'),
        'regionCode' => array_get($data, 'region_code'),
        'timezone' => array_get($data, 'timezone'),
        'postalCode' => array_get($data, 'postal_code'),
    ];
}

from geoip.

pulkitjalan avatar pulkitjalan commented on July 19, 2024

Sorry for the delay, i tried to replicate this but its working fine for me.
Does it still happen on the latest version (2.3.1)?

from geoip.

pulkitjalan avatar pulkitjalan commented on July 19, 2024

Ive added the above suggestions to the latest version.

from geoip.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.