9
Hello I am developing an application that works with the Jxmapviewer library in the java language, one of the proposals is to find geolocation points (ex: stops/snack bars) in a certain street that the user selects.
The geolocation information of the points and the user’s location are already known. The problem is to restrict the search only to the street where the user selects using the library. I don’t know how to check whether or not the point is on the given street.
Example of geolocation already provided:
GeoPosition ponto = new GeoPosition(ponto.getLatitude(), ponto.getLongitude());
Someone who has worked with similar or similar problems could provide an example?
Emanoel, this might help you: http://answall.com/questions/55669/identificar-se-conjuo-coordinate
– Geison Santos
Hello @Geisonsantos I’m already managing to paint the geolocation on the map, my biggest problem is to restrict the points on certain streets..
– Emanoel