Open google maps with "to" and "from" cooridinates using a button in android mode?

edited May 2015 in Android Mode

Just as the title says help is greatly appriciated!

Answers

  • @Henji==== not sure t understand but if you want some boundingbox:

    using pure android and osmdroid + googlemaps or openStreet: import org.osmdroid.util.BoundingBoxE6;

    then:

        BoundingBoxE6 boundingBox = new BoundingBoxE6(lat1, long1, lat2, long2);
    
                map.setScrollableAreaLimit(boundingBox);
    
Sign In or Register to comment.