A powerful mapping API which supports online mapping as well as offline mapping capability.
Questions tagged [route-me]
81 questions
0
votes
2 answers
Objective C: Route-Me code behaves differently in iPad simulator 4.2 and 5
I'm trying to figure something that is going on with my Route-Me code using both the Xcode iPad 4.2 Simulator and the iPad 5 simulator and both simulators and giving different results. Here is a snippit of the code:
//set size of the map view
…

Ray Y
- 1,261
- 3
- 16
- 24
0
votes
1 answer
Tilestream support in Route-me
Has anyone been able to integrate the opensource TileStream server with the route-me framework for iOS? The documentation is pretty scarce. I have been able initialize a dictionary with the data for my map, however I get a sigabrt whenever I try and…

taylormade201
- 696
- 2
- 9
- 25
0
votes
1 answer
Remove Pins before displaying it on the map
before displaying Pins on the map, i have to make sure to remove them from the map so that it will never be over displayed because the procedure of displaying is placed in the viewWillAppear method. My relevant code is this :
…

Malloc
- 15,434
- 34
- 105
- 192
0
votes
1 answer
can't download the route-me code from svn
i try to follow this article, the first step is to download the route-me code from svn:
svn co http://route-me.googlecode.com/svn/trunk/ route-me
I really didn't understand how to follow up this instruction. I try to do it in the Terminal but seems…

Malloc
- 15,434
- 34
- 105
- 192
0
votes
1 answer
Does route-me support route-finding?
I would like to calculate a route along roads between two waypoints on a city map, as in the directions feature in Google Maps. Can I do this with route-me?

Tommy Herbert
- 20,407
- 14
- 52
- 57
0
votes
1 answer
Iphone route-me application issue
I am using route-me MapView for displaying offline map. It works well in the sample. I followed the Embedding guides and added the MapView.XCodeProj to my Xcode project it compiles successfully. But in my viewcontroller if i add RMMapView view as a…

pradeep
- 81
- 1
- 2
0
votes
1 answer
collect2: ld returned 1 exit status
Ld "build/Debug-iphonesimulator/Cloudmade Map.app/Cloudmade Map" normal i386
cd /Users/MPDEV/Documents/cloudmade2
setenv MACOSX_DEPLOYMENT_TARGET 10.6
setenv PATH…

Tim
- 127
- 2
- 2
- 8
0
votes
1 answer
route-me RMMarker Label is not show in 4
using Route-me show offline map, i show a customer view set into RMMarker(method:[marker setLabel:myView];) ,it can be show in ios 3.2, but not show in ios4.x. what's the problem?

Cleexiang
- 11
- 1
- 3
0
votes
1 answer
Strange EXC_BAD_INSTRUCTION using route-me on iPod
I'm getting some really strange EXC_BAD_INSTRUCTION only on iPod Touches using route-me. route-me is a library that's in my project.
Here are the details. I'm initWithFrame a Mapview.
mapView = [[RMMapView alloc] initWithFrame:CGRectMake(0, 0,…

Felix Khazin
- 1,479
- 2
- 10
- 16
0
votes
1 answer
Route-Me \ CloudMade dragging problem
I'm using CloudMade on iPhone and I've got this really critical issue to solve.
The problem is when the user moves the map up\down there is nothing to stop him when he gets to the end of the map.
This way he can move the map forever and just see a…

Rizon
- 1,516
- 4
- 25
- 45
0
votes
0 answers
how to attribute OpenStreetMap on iOS?
I would like to attribute OpenStreetMap on my app, but I can't find the code for that, I was hoping it would be on the samples. There should be a text on the map with a link to OpenStreetMap as shown in the image. Any ideas? or should I open a small…

Ted
- 3,805
- 14
- 56
- 98
0
votes
1 answer
Seeing high CPU spikes in MapBox using SQLite3_Step
I'm currently getting a tiling issue in MapBox and it looks like a bottleneck issue with the following code:
rc = sqlite3_step(pStmt);
in the following function:
- (BOOL)executeUpdate:(NSString*)sql error:(NSError**)outErr…

Elliott D'Alvarez
- 1,217
- 16
- 30
0
votes
1 answer
Mapbox / route-me : user location no longer working
I'm using route-me (Alpstein fork) to show a map with user's location. It was working until I updated both Xcode and route-me recently. Now if I set :
mapView.showsUserLocation = YES;
mapView.userTrackingMode =…

Tim Autin
- 6,043
- 5
- 46
- 76
0
votes
1 answer
How to integrate map2sqlite file in route-me
I went through this link regarding how to use offline maps in ios using openstreetmap data and route-me. I generated map2sqlite file and integrated it into route-me by following the link. But map is not loading the required region. Is there any…

user2533604
- 655
- 1
- 11
- 28
0
votes
1 answer
How to set marker with route-me
I want to set a Marker (PNG) to a specific location on the map (based on x/y coordinates).
I know how to do that in Xcode, but I have to do it with Visual Studio (C#/Xamarin).
Thank you so much for telling me the…
user3782891