I have used Neo4j 3.0.4 + Spatial.
I am working with curl, and I have make this calls:
addSimplePointLayer,(create nodes),addNodeToLayer
In this point, I try:
findGeometriesWithinDistance
And work perfectly (I have need change lat,lon by lon,lat...)
But I need use in cypher, for example:
START n=node:geom('withinDistance:[40.39742917035895,-3.495200140744832, 100.0]')
WITH n
WHERE n:TypeX
RETURN n;
This never return results because "geom" is empty. I haven't any index, I try to create a new index with provider "spatial", and not work (i have read that is option was remove).
Can I put all nodes of TypeX in geom index?, or Can I use withinDistance without index? (I think in where is not posible use this)