Replies: 1 comment
-
|
@mapsforge @devemux86 I found a solution, convert pdf to png through QGIS and then convert it to mbtiles format to load normally. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
hi mate, i want to superimpose bitmap/pdf on the map, how should I do it? best wish. @mapsforge @devemux86
just like this
https://github.com/osmdroid/osmdroid/wiki/Ground-Overlay
GroundOverlay2 overlay = new GroundOverlay2();
overlay.setTransparency(0.5f);
overlay.setImage(bitmap);
overlay.setPosition(new GeoPoint(50.0,-127.5), new GeoPoint( 21.0, -66.5));
mMapView.getOverlayManager().add(overlay);
Beta Was this translation helpful? Give feedback.
All reactions