Hi all,
I have a database where cities (villes in french) are stored, with longitude
and latitude values. I'm trying to get some of them, inside a square.
Here is one request:
/sofitex/_design/all/_view/getVillesByLatAndLong?startkey=%5B6.84505190241%2C47.6459660001%5D&endkey=%5B8.64494809759%2C49.4624339999%5D&include_docs=true
Here is the view code:
"getVillesByLatAndLong": {
"map": "function(doc) {if (doc.type=='ville')
{emit([doc.lat,doc.long], doc);};}"
}
The result is empty, but I know I have some cities that match. Could anyone
tell what's wrong?
Best regards,
Stephane Mourey