code cleaning
This commit is contained in:
parent
ddafc9b329
commit
f41ccb8ff0
3 changed files with 1 additions and 21 deletions
|
@ -166,10 +166,6 @@ public class AidlMapLayer extends OsmandMapLayer implements IContextMenuProvider
|
|||
mapTextLayer.putData(this, displayedPoints);
|
||||
}
|
||||
|
||||
public String getLayerId() {
|
||||
return aidlLayer.getId();
|
||||
}
|
||||
|
||||
private void drawPoint(Canvas canvas, int x, int y, RotatedTileBox tb, AMapPoint point, Bitmap image, boolean selected) {
|
||||
if (image == null) {
|
||||
image = placeholder;
|
||||
|
|
|
@ -209,11 +209,7 @@ public class ContextMenuLayer extends OsmandMapLayer {
|
|||
x = r.getX();
|
||||
y = r.getY();
|
||||
} else if (selectedObject instanceof AMapPoint) {
|
||||
AMapPoint mapPoint = (AMapPoint) selectedObject;
|
||||
AidlMapLayer aidlLayer = view.getAidlMapLayer(mapPoint.getLayerId());
|
||||
if (aidlLayer != null) {
|
||||
markerCustomized = true;
|
||||
}
|
||||
markerCustomized = true;
|
||||
}
|
||||
if (x != null && y != null && x.size() > 2) {
|
||||
double lat = MapUtils.get31LatitudeY(y.get(0));
|
||||
|
|
|
@ -311,18 +311,6 @@ public class OsmandMapTileView implements IMapDownloaderCallback {
|
|||
return layers;
|
||||
}
|
||||
|
||||
public AidlMapLayer getAidlMapLayer(String layerId) {
|
||||
for (OsmandMapLayer layer : layers) {
|
||||
if (layer instanceof AidlMapLayer) {
|
||||
AidlMapLayer aidlMapLayer = (AidlMapLayer) layer;
|
||||
if (aidlMapLayer.getLayerId().equals(layerId)) {
|
||||
return aidlMapLayer;
|
||||
}
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public <T extends OsmandMapLayer> T getLayerByClass(Class<T> cl) {
|
||||
for (OsmandMapLayer lr : layers) {
|
||||
|
|
Loading…
Reference in a new issue