> Is it possible to Search Street name like Geocoding offline in
graphhopper in android ?

No inbuilt method yet. But users reported they just loop over all names
(e.g. safe them in an array) and associate the location with them:
iter = graph.getAllEdges
while(iter.next()) {
    points = iter.fetchWayGeometry(2);
    name = iter.getName();
}


On 16.06.2015 10:46, Fred Laurent wrote:
> Please :)

please avoid triggering the mailing list! Because everytime you do this
there are hundreds of emails triggered!

Please read the 'code of behaviour' here
<https://lists.openstreetmap.org/listinfo/graphhopper>: where I included
*1. Make sure it is a 'good' question*

Regards,
Peter


>
> 2015-06-16 10:16 GMT+02:00 Fred Laurent <[email protected]
> <mailto:[email protected]>>:
>
>     Hi list,
>     Is it possible to Search Street name like Geocoding offline in
>     graphhopper in android ?
>     How to make ? And what is the file names in the file.ghz ?
>     Thank you ,
>     Fred
>
>
>
>
> _______________________________________________
> GraphHopper mailing list
> [email protected]
> https://lists.openstreetmap.org/listinfo/graphhopper

_______________________________________________
GraphHopper mailing list
[email protected]
https://lists.openstreetmap.org/listinfo/graphhopper

Reply via email to