Fix blank in LatLon display
This commit is contained in:
parent
b0d4c1d120
commit
0947c9fb47
1 changed files with 2 additions and 2 deletions
|
@ -287,7 +287,7 @@ public class GeoIntentActivity extends OsmandListActivity {
|
|||
((Amenity) point).setType(getMyApplication().getPoiTypes().getUserDefinedCategory());
|
||||
((Amenity) point).setSubType("");
|
||||
point.setLocation(lat, lon);
|
||||
point.setName("Lat: " + lat + ",Lon:" + lon);
|
||||
point.setName("Lat: " + lat + ", Lon:" + lon);
|
||||
return point;
|
||||
}
|
||||
|
||||
|
@ -401,7 +401,7 @@ public class GeoIntentActivity extends OsmandListActivity {
|
|||
}
|
||||
|
||||
public GeoPointSearch(double lat, double lon, int zoom) {
|
||||
this(lat, lon, "Lat: " + lat + ",Lon: " + lon, zoom);
|
||||
this(lat, lon, "Lat: " + lat + ", Lon: " + lon, zoom);
|
||||
}
|
||||
|
||||
public GeoPointSearch(double lat, double lon, String name) {
|
||||
|
|
Loading…
Reference in a new issue