Giter VIP home page Giter VIP logo

Comments (7)

mjaschen avatar mjaschen commented on August 25, 2024

Hey,

can you var_dump() the failing constructor values in the Coordinate class? Perhaps the number format has a comma as decimal separator or something (due to locale settings).

Marcus

from phpgeo.

mjaschen avatar mjaschen commented on August 25, 2024

Hey,

I pushed version 0.2.3 of phpgeo a few moments ago. If the Coordinate constructor throws an exception the failing lat/lng value will be included in the exception message. I think it'll help debugging the error.

Marcus

from phpgeo.

alijmlzd avatar alijmlzd commented on August 25, 2024

hi again
well, i got your update and test again. the lat/lng value is empty. it seems somthing wrong with my php configuration.
my both local and server machines have exactly the same php version. all of required extensions and packages are installed.
so, do you have an idea?

thank you
Ali

from phpgeo.

mjaschen avatar mjaschen commented on August 25, 2024

It's definitely an erroneous behavior of your app. How do you read the lat/lng values from the query/GET params? Is there somewhere a kind of filter involved which removes the values from request data or something?

from phpgeo.

alijmlzd avatar alijmlzd commented on August 25, 2024

simply using $_GET['lat']/$_GET['lng'].

from phpgeo.

mjaschen avatar mjaschen commented on August 25, 2024

It seems you're using WordPress, aren't you?

In this case you have to register your GET parameters:

<?php
add_action('init','alijmlz_register_param');
function alijmlz_register_param() { 
    global $wp; 
    $wp->add_query_var('lat'); 
    $wp->add_query_var('lng'); 
    $wp->add_query_var('radius'); 
}

You can access the registered variables with get_query_var():

<?php
var_dump(get_query_var('lat'));

I didn't try it myself, just googled it, so your mileage may vary ;-)

from phpgeo.

alijmlzd avatar alijmlzd commented on August 25, 2024

problem solved and it's not related to any of our ideas.
it happens because some of our stored locations does not have lat/lng and when i want to get the distance of the stored location and user's location, the passed values are empty and we all know the rest of the story.
i have to fighting with our data entry team :d
thank you so much for your helps.

from phpgeo.

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.