OpenStreetMap-Tools for Android
0
votes
2answers
12 views
Map wont scroll
Im trying to create a simple map activity using osmdroid library
Map shows fine but it just wont scroll. I can't figure out what is the problem
Here is the code:
Activity onCreate method
...
0
votes
0answers
11 views
Map Tile that should be in the top is in the bottom
I have a working tile server implemented using mapcache and wrote a program using osmdroid mapview to render maptiles to it. However I was able to obtain tiles into the android program but the tiles ...
2
votes
2answers
36 views
Osmdroid custom marker drawables can't draw text or shapes
I'm currently using the latest osmdroid library (3.0.10) to show my custom markers on a map with an ItemizedOverlay. I've extended the Drawable class to implement my own drawing. However my drawables ...
0
votes
0answers
38 views
OSMDroid no map loading while changing zoom level
I started to use OSMDroid library and have a problem:
When I zoom in (for example from level 13 to 14), new fragments haven't been loaded. Instead of that, I see fragments from level 13, which are ...
0
votes
1answer
24 views
osmdroid XYTileSource not showing tiles from a custom server
I am using OSMdroid API for displaying custom tiles. So trying to display tiles from my local server
Here is my code
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mapView = ...
0
votes
1answer
29 views
OSMdroid error with using .mbtiles database
I have a problem trying to use OSMDroid. I use example from here:
Example of OSMDroid
Then I use this video to create and download mbtiles map.
Video
And in my programm I have error:
05-27 ...
-1
votes
1answer
24 views
Draw dynamically on mapview android
I am working on a project using openstreetmap and the library osmdroid. I want to draw
dynamically on my map, for example a circle. How do I do that?
0
votes
0answers
12 views
mapcache tiles working with XYTileSource
I have a custom tile server implemented in mapcache. Is it possible to use that server with XYTileSource in osmdroid? If yes. What is the second argument (ResourceId) in XYTileSource constructor ...
0
votes
0answers
32 views
osmdroid's MapView renders only thin strip of the map
I'm writing an Android app which is using osmdroid's MapView widget and I can't figure out why instead of filling half of my device's screen (just like it looks in the preview mode in Intellij IDEA), ...
0
votes
1answer
33 views
Unable to show tiles with osmdroid from CloudMade
I'm trying to make work osmdroid with CloudMade (or whatever) but I'm unable to show any tile only blank squares. The only thing I can see in Log cat is
Could not find method ...
0
votes
0answers
20 views
osmbonuspack dismiss Bubble
I have an activity A which has a map (using osmbonuspack for Android). I click on a point from the map and a bubble appears. This bubble has a detail button that when clicked I go to Activity B.
When ...
0
votes
0answers
17 views
accessing my own tileserver implemented using MapServer via osmdroid
I have a running Mapserver implemented in osgeo-6.05. I can access the map using a web browser.
Since I am trying to connect that map to my Android application I am using OSMdroid. I saw in Many ...
0
votes
0answers
14 views
Android OSM replace myLocationOverlay with compass
I am using android OSmdroid map library, is it possible to covert my location overlay with compass? right now its showing person image when I am enable my location but i just wanted to replace with ...
0
votes
3answers
34 views
get coordinates by clicking on map (openstreetmaps)
How can we get the coordinates of a point by clicking on it in open street maps?
tried:
public void onClick(View v) {
Projection proj = mapView.getProjection();
IGeoPoint p = ...
0
votes
0answers
40 views
Osmdroid change tiles source
I'm developing an android app that visualize a map in online and offline mode.
I'm using osmdroid.
Is it possible to change osmdroid's tiles source? I would like, for online map view, to use MapQuest ...