Questions tagged [geopoints]

229 questions
0
votes
0 answers

Import geopoints into Parse.com database

I have a large csv file of lat/long points that I would like to import into Parse into a class that has already been created with existing lat/long points. Unfortunately parse does not allow you to import "Geopoints" with their CSV import tool. They…
Jon Erickson
  • 1,876
  • 4
  • 30
  • 73
0
votes
1 answer

Parse Cloud Code geoPoint Query Javascript Syntax

I am attempting to write a Parse Cloud Code function where the parameter is a list of Objects that each include a geoPoint member. For each item in the list, I will search the Parse data store for an existing item in a 1 mile radius with the same…
0
votes
1 answer

Reverse order from query.whereKey("column", nearGeoPoint) in UITableView

I'm trying to get location data(PFGeoPoint) from parse.com, show it in UITableView, and sort it by nearest one from user location. I already use the code same with shown in parse documentation : findPlaceData.whereKey("position",…
Gibran
  • 934
  • 2
  • 8
  • 19
0
votes
2 answers

Query between distances in Parse

I would like to search places between two given distances, using GeoPoints. Using the currently api, I think I could make something like this pseudo algorithm: query.whereWithinKilometers("directions", GlobalData.ownerGeoPoint, MAXIMUM…
ElYeante
  • 1,745
  • 21
  • 22
0
votes
0 answers

how to upload multiple location data in parse.com?

I have a 100 data contains location name, it's latitude, and it's longitude. The data is stored in csv file. I need to upload it to my apps database in parse.com is there any tutorial on how to do it? I'm using macbook as my PC by the way.
Gibran
  • 934
  • 2
  • 8
  • 19
0
votes
1 answer

showing GeoPoints from parse.com in MKMapView

I'm trying to build an app showing my favorite spots with swift. I already store my spot information GeoPoints from parse.com. But I still can't manage to show retrieve the data (spot name and GeoPoints) and pass it to MKMapView. Can someone show me…
Gibran
  • 934
  • 2
  • 8
  • 19
0
votes
2 answers

Parse.com GeoQueries using rest api are always returned empty array

I want to load the details based on the user location. When I query for the results it is always returning empty array. What to do? This is my…
Chaitu
  • 907
  • 2
  • 13
  • 27
0
votes
1 answer

Extract Latitude and Longitude from GeoPoint variable

Guyz I need to get user current location as an latitude and longitude,so I had defined GeoPoint getLocationFromAddress(String strAddress) which takes steAddress as parameter which string addres and then return p1 as geopoint variable.Now my…
user3930098
  • 395
  • 7
  • 14
0
votes
1 answer

Print geopoint object from parse.com

I want to print on label my geopoint from parse.com. using Show [object Object] if i use Show…
Freituk
  • 5
  • 2
0
votes
1 answer

How can i contain all string to array?

I try to convert GeoPoint to Array by Geopoint to String to Array. I want to use this array for draw polyline in map kit. Now i can convert to string but can't contain to array. How can i contain all string to array Is there another way to use…
0
votes
1 answer

GeoPoint Queries between AngularJS and Parse.com Error Code: 1

Hey all I've been using Parse.com as a back end for an angularjs web app I'm working on and recently I've run into some problems with GeoPoint queries. I'm trying to get a list of the 10 closest venues in the database with the following $http…
Alexander Romero
  • 401
  • 5
  • 10
0
votes
1 answer

Weird Behaviour of Geo Point in Elastic Search

In GeoDistance Elastic Search Query, I created a mapping with "geo_point" to map to one index. When I query with latitude as x , longitude as y, and radius as z, I get some rows (for eg. a,b,c). When I query again to the same index with same…
user3152555
  • 195
  • 3
  • 11
0
votes
3 answers

Find geopoints in a radius near me

I have a DB with Geopoints. I need to do a query to get all geopoints in the radius of X meters of me. How can i do this? I think the best way is get the minimal lat/long possible point, and the max lat/long point and get all of them for which:…
colymore
  • 11,776
  • 13
  • 48
  • 90
0
votes
1 answer

How calculate the Lat/Lon 5km east or north of my current location?

I want to calculate the coordinates in Lat/Lon of the points B and C. And A is my current location, for example Lat: 48.23490 Lon: 13.177660. I retrieve my current location. But now I don't know how to calculate the point B and C. Refer to my…
user2940365
0
votes
1 answer

Objective C - Parse.com Save and Read Geolocation IOS

i want to Read the Geolocation from the Parse Database and show the Location from another Users in the Map. I Write the Location to the parse Database : [PFGeoPoint geoPointForCurrentLocationInBackground:^(PFGeoPoint *geoPoint, NSError *error) { …