如何在mapforge中设置边框,就像在osmdroid中一样,如何在pathLayer上方或下方放置文本?
在osmdroid中,我通常会调用setScrollableAreaLimit()
方法,但在mapforge中,mapView
中没有这样的方法。我该如何做到这一点?
另外,如何在TextOverlay
下方或上方添加PathLayer
?
//Bounding Box
maxScrollableLimit = new BoundingBox(14.7882,121.1421,14.3469,120.8990);
...
private PathLayer createPathLayerFirst(PathWrapper response) {
Style style = Style.builder()
.generalization(Style.GENERALIZATION_SMALL)
.strokeColor(0x9900cc33)
.strokeWidth(4 * getResources().getDisplayMetrics().density)
.build();
PathLayer pathLayer = new PathLayer(mapView.map(), style);
List<GeoPoint> geoPoints = new ArrayList<>();
PointList pointList = response.getPoints();
for (int i = 0; i < pointList.getSize(); i++)
geoPoints.add(new GeoPoint(pointList.getLatitude(i), pointList.getLongitude(i)));
pathLayer.setPoints(geoPoints);
return pathLayer;
}
答案 0 :(得分:0)
根据您提供的代码,您是否完全查看mapsforge docs并不清楚。先这样做,然后回到我的答案。
要设置地图限制,请将以下代码添加到onStart()方法中:
mapView.getModel().mapViewPosition.setMapLimit(this.getBoundingBox());
在同一课程中,准备好以下方法:
private BoundingBox getBoundingBox() {
final double MINLAT = Double.valueOf(res.getString(R.string.mapminlat));
final double MINLON = Double.valueOf(res.getString(R.string.mapminlon));
final double MAXLAT = Double.valueOf(res.getString(R.string.mapmaxlat));
final double MAXLON = Double.valueOf(res.getString(R.string.mapmaxlon));
return new BoundingBox(MINLAT, MINLON, MAXLAT, MAXLON);
}
要在mapview中添加图层,请执行以下操作:
mapView.getLayerManager().getLayers().add(layer);
要创建图层,请参阅文档。特别关注examples;也许LabelLayer就是你要找的。 p>