A powerful mapping API which supports online mapping as well as offline mapping capability.
Questions tagged [route-me]
81 questions
0
votes
1 answer
Route-Me: Alpstein fork - Customize cluster icon and display cluster count
I am using Route-Me: Alpstein fork for developing an iOS app. The original Route-Me/Mapbox code had an option to customize the cluster icon and also the the cluster count. I've been looking for a way to do this with the Route-Me: Alpstein…

Eric P Pereira
- 450
- 1
- 7
- 18
0
votes
2 answers
download Route me online tiles into database
working on iPhone osm maps app (Route me).well initialising and downloading online maps was easy but real problem lies in saving the tiles through the code while u are online and reuse them while you are offline.i checked blogs regarding the same…

Tanuj Jagoori
- 309
- 3
- 9
0
votes
1 answer
how to hide only markers in route me
i want to show /hide markers on route me map initialised for osm.
but using command [marker manager hideAllMarkers]; hides not only markers on map but also routes or anything added to marker manager.How to hide only markers and keep other things in…

Tanuj Jagoori
- 309
- 3
- 9
0
votes
1 answer
route-me together with libosmscout (offline vector maps for iOS)
I´m trying to use the route-me framework together with C++ library libosmscout.
What I have done so far:
import OSM data into libosmscout format
compiling the iOS example-project from libosmscout-repo
The example project only draws one image of…

Thomas G.
- 1,003
- 12
- 27
0
votes
1 answer
Set range of markers in MapBox or Route-me
I'm using MapBox to display an offline map that covers just a small portion of Earth and I want to show markers that have coordinates ranging from lng: 14.0 - 15.0 and lat: 54.0 - 55.0.
The problem is that MapBox/Route-Me thinks that my map bounds…

martin
- 93,354
- 25
- 191
- 226
0
votes
1 answer
Redrawing markers on a Route-me map
Working in iOS 6, I cannot seem to get the map view to update itself to show markers added or removed.
When the app opens, a number of markers are placed on the map. The user can then make choices that add new markers and/or remove existing…

johnz
- 11
- 3
0
votes
1 answer
FMDatabase.h not found when using route-me library
So im trying to use the route-me widget in my app, but xcode keeps complaining that it cant find FMDatabase.h, yet its included in the project (albeit under a different project that is included into my project). I've copied how a sample app has been…

Fonix
- 11,447
- 3
- 45
- 74
0
votes
1 answer
How Find Boundary of Loaded Map Tiles on Route Me Open Source Map?
Using following open source Route Me app I am loading Maptiles
mapview = [[RMMapView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 320.0f, 460.0f)];
[mapview setBackgroundColor:[UIColor whiteColor]];
mapview.delegate = self;
id …

user914425
- 16,303
- 4
- 30
- 41
0
votes
1 answer
Simple algorithm for annotations request from server on map
What is a good enough method of knowing when to go out to the server and request for annotations?
i.e. knowing when the area on the screen was not yet exposed by the user?
If I have a LAT1,LON1 LAT2,LON2 specifying the screen boundaries, or maybe…

Ted
- 3,805
- 14
- 56
- 98
0
votes
0 answers
Route me (Alpstein fork) for iOS markers wiggle in higher zoom levels
I am trying to get Route me working with building maps and I have a little problem.
Try one of the examples of route me with markers. When you zoom in as max as you can, markers starts wiggle and doesn't stick to map. It doesn't look nice and it is…

Tomáš Kohout
- 755
- 6
- 15
0
votes
1 answer
OSM in mapkit vs route-me OSM
I'm trying to figure out MapKit for the first time.
Are there any difference in the maps provided by iOS 6 MapKit compared to using OSM in route-me/mapbox?
The maps provided by MapKit are provided by Apple's tile server?
Would it be possible to use…

Nora Olsen
- 983
- 2
- 10
- 22
0
votes
1 answer
Route-Me TapOnMarker hideLabel won't hide all other marker labels but crashes
I seem to be having a little trouble getting the route-me markers to hide. They seem to show fine but if I try to hide them with a for loop it seems to crash. Here is what I have:
- (void) tapOnMarker: (RMMarker*) marker onMap: (RMMapView*) map{
…

Ray Y
- 1,261
- 3
- 16
- 24
0
votes
1 answer
iOS route-me draggable marker looses track (even in samples)
In my iOS app I'm using the route me lib to display a map in offline mode.
I have some markers on the map, and now I would like to make them draggable. I used this code :
- (void) mapView:(RMMapView *)map didDragMarker:(HotspotMarker*)marker…

Tim Autin
- 6,043
- 5
- 46
- 76
0
votes
1 answer
Customize Map´s Layout
I'm developing an application that displays maps without using MapKit IOS.
Therefore I am using Route-Me. However need to create a few maps with colors according to the design of my application.
Is there any way to do this without being use the…

DaSilva
- 1,358
- 1
- 19
- 42
0
votes
1 answer
Route-Me Offline Maps from Document Root
In my App, there is a offline Map presented from a sqlite file.
RMDBMapSource *mapSrc = [[RMDBMapSource alloc] initWithPath:@"map.sqlite"];
RMMapContents *contents = nil;
contents = [[RMMapContents alloc] initWithView:mapView…

jussi
- 2,166
- 1
- 22
- 37