nearSphere 需要地图运算符

nearSphere needs a map operator

//Rahees is class in Parse.com for android from where I want to get the list of nearest location from geopoint g.Rahees class has列名 "Locations".

我想通过将 g 与 Rahees class

的位置列中列出的地理点进行比较来获取距离 g 最近的地理点列表

//******************拉希斯 Class********************* *****//

@ParseClassName("Rahees")
public class Rahees extends ParseObject {

   public  Rahees()
    {
        super();
    }


    public String getDisplayName() {
        return getString("displayName");
    }
    public void setDisplayName(String value) {

        put("displayName", value);
    }
    public static ParseQuery<Rahees> getQuery() {
        return ParseQuery.getQuery(Rahees.class);
    }

}

//************主要 Activity*************************** ******//

public class MainActivity extends AppCompatActivity {
    ParseGeoPoint g;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        ParseUser cuser = ParseUser.getCurrentUser();

        Rahees haila = new Rahees();

        haila.setDisplayName("Rahim");

    }


   //button for Logging out of system
    public void logout(View view)
    {
        ParseUser.logOut();
        Intent intent = new Intent(MainActivity.this, SignUp_Login.class);
        startActivity(intent);


    }

//Button for going to Map Masti class, it is this button which triggers to compare the geopoint g with the geopoints in the server


    public void go_to_maps(View view)
    {

        Intent intent = new Intent(MainActivity.this, Map_Masti.class);
        startActivity(intent);
    }
}

//******************************MapMasti Class********* ********************//

public class Map_Masti extends FragmentActivity  {
    ParseGeoPoint g;
    private TextView textView;
    private SupportMapFragment mapFragment;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.map_masti);

        textView = (TextView)findViewById(R.id.text);
        mapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map_fragment);

//Query to get the geopoint g from server 

        ParseQuery<ParseUser> query = ParseUser.getQuery();
        query.getInBackground("ccm3xKMmr4", new GetCallback<ParseUser>() {
            public void done(ParseUser object, ParseException e) {
                if (e == null) {
                    g = (ParseGeoPoint) object.get("user_Location");
                    Log.d("mohit", g + "");

                } else {
                    // something went wrong
                    Log.d("mohit", e + " ");
                }
            }
        });

//查询比较对象"Rahees"中的哪些地理点与列"Locations"接近地理定位"g"

 ParseQuery<Rahees> mapQuery1 = Rahees.getQuery();
        mapQuery1.whereWithinKilometers("Locations", g, 6000);
        mapQuery1.setLimit(3);
        mapQuery1.findInBackground(new FindCallback<Rahees>() {
            @Override
            public void done(List<Rahees> objects, ParseException e) {
                // Handle the results
                if (e == null) {//****this is where the exception error comes, it doesn't goes inside if statement**** 
                    for (int i = 0; i < objects.size(); i++) {
                        Log.d("mohit", "2" + objects.get(i).get("Locations"));

                    }
                } else {
                    Log.d("mohit", "" + e);
                }
            }
        });

}
}

下面是我从其他部分得到的错误

01-10 12:27:38.655 4348-4348/? D/error: com.parse.ParseRequest$ParseRequestException: $nearSphere 需要地图运算符

我能够从 Parse 中检索 g 的值,g 的 Log 输出是: ParseGeoPoint[40.000000,30.000000]

请帮忙

您应该在获得第一个结果后才进行第二个查询,因为 gnull 直到将被回调初始化。

更新:

public class Map_Masti extends FragmentActivity {
    ParseGeoPoint g;
    private SupportMapFragment mapFragment;
    private TextView textView;

    private void getG() {
        ParseQuery<ParseUser> query = ParseUser.getQuery();
        query.getInBackground("ccm3xKMmr4", new GetCallback<ParseUser>() {
            public void done(ParseUser object, ParseException e) {
                if (e == null) {
                    g = (ParseGeoPoint) object.get("user_Location");
                    Log.d("mohit", g + "");
                    getLocations();

                } else {
                    // something went wrong
                    Log.d("mohit", e + " ");
                }
            }
        });
    }

    private void getLocations() {
        ParseQuery<Rahees> mapQuery1 = Rahees.getQuery();
        mapQuery1.whereWithinKilometers("Locations", g, 6000);
        mapQuery1.setLimit(3);
        mapQuery1.findInBackground(new FindCallback<Rahees>() {
            @Override
            public void done(List<Rahees> objects, ParseException e) {
                // Handle the results
                if (e == null) {//****this is where the exception error comes, it doesn't goes inside if statement****
                    for (int i = 0; i < objects.size(); i++) {
                        Log.d("mohit", "2" + objects.get(i).get("Locations"));

                    }
                } else {
                    Log.d("mohit", "" + e);
                }
            }
        });
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.map_masti);
        textView = (TextView) findViewById(R.id.text);
        mapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map_fragment);
        getG();
    }
}