survey_marker = ndb.GeoPt("35.2, 40.5")
query = "distance(survey_marker , geopoint(35.2, 40.5)) < 10000"
index = search.Index(name="myIndex")
search_results = index.search(query)
print search_results
for doc in search_results:
print doc
I tried this but it always gives this result on exectuing :
search.SearchResults(number_found=0L)
Also read an thread on this at stackoverflow which says it doesnt works on local machine.. so I deployed a test application but the result is no different.
Plz help me with this.