How To Mark Two Location's In Map Of An Android App
in my app i am showing the google maps. Here i want to mark two places. One is to be my current location place and other is to be the lat and lng which i give. i am able to show th
Solution 1:
Check this link..
In these page you have add you location in String array.. In these place you can add two Latitude and Longitude Values..So that it will points Two places in MapView..
String coordinates[] = {"1.352566007", "103.78921587"};
double lat = Double.parseDouble(coordinates[0]);
double lng = Double.parseDouble(coordinates[1]);
Post a Comment for "How To Mark Two Location's In Map Of An Android App"