Git Product home page Git Product logo

Comments (6)

renege avatar renege commented on July 17, 2024

@manuelbieh ?

from geolib.

manuelbieh avatar manuelbieh commented on July 17, 2024

Push the coordinates of all the locations which are within your circle into an array and use this one as second parameter in geolib.orderByDistance()

var basePosition = {latitude: 51.515, longitude: 7.453619};
var locations = [
  {latitude: 52.516272, longitude: 13.377722},
  {latitude: 51.528, longitude: 7.45425},
  {latitude: 51.503333, longitude: -0.119722},
  {latitude: 51.515, longitude: 7.463619}
];
var locationsWithinRadius = [];
locations.forEach(function(location) {
  if(geolib.isPointInCircle(basePosition, location, 10000)) {
    locationsWithinRadius.push(location);
  }
});

geolib.orderByDistance(basePosition, locationsWithinRadius);

from geolib.

manuelbieh avatar manuelbieh commented on July 17, 2024

... or you can use Array.filter() which is a bit shorter:

var basePosition = {latitude: 51.515, longitude: 7.453619};
var locations = [
  {latitude: 52.516272, longitude: 13.377722},
  {latitude: 51.528, longitude: 7.45425},
  {latitude: 51.503333, longitude: -0.119722},
  {latitude: 51.515, longitude: 7.463619}
];

geolib.orderByDistance(basePosition, locations.filter(function(location) {
  return geolib.isPointInCircle(basePosition, location, 10000);
}));

from geolib.

renege avatar renege commented on July 17, 2024

@manuelbieh thnx, tried that but it's not working..

///basePosition: 
{latitude: 52.7027, longitude: 6.2001316667}

Return this order:

{latitude: 52.2619, longitude: 6.22439} #1
{latitude: 52.2727, longitude: 6.78999} #2
{latitude: 52.2196, longitude: 6.88408} #3
{latitude: 52.259, longitude: 6.2261} #4
{latitude: 52.1919, longitude: 5.95327} #5

That's not correct, because number 1 and 4 are just a few streets away from each other.

from geolib.

renege avatar renege commented on July 17, 2024

Tried with multiple coordinates, it never is correct.

from geolib.

manuelbieh avatar manuelbieh commented on July 17, 2024
var basePosition = {latitude: 52.7027, longitude: 6.2001316667};
geolib.orderByDistance(basePosition, [
  {latitude: 52.2619, longitude: 6.22439},
  {latitude: 52.2727, longitude: 6.78999},
  {latitude: 52.2196, longitude: 6.88408},
  {latitude: 52.259, longitude: 6.2261},
  {latitude: 52.1919, longitude: 5.95327}
]);

Returns the following result:

[
  {
    "key": "0",
    "latitude": 52.2619,
    "longitude": 6.22439,
    "distance": 49078
  },
  {
    "key": "3",
    "latitude": 52.259,
    "longitude": 6.2261,
    "distance": 49405
  },
  {
    "key": "4",
    "latitude": 52.1919,
    "longitude": 5.95327,
    "distance": 59266
  },
  {
    "key": "1",
    "latitude": 52.2727,
    "longitude": 6.78999,
    "distance": 62410
  },
  {
    "key": "2",
    "latitude": 52.2196,
    "longitude": 6.88408,
    "distance": 71070
  }
]

http://codepen.io/anon/pen/epBrEB

from geolib.

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.