Toggle navigation
Toggle navigation
This project
Loading...
Sign in
尹诚
/
Mapbox-iOS-SDK
·
Commits
Go to a project
GitLab
Go to dashboard
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Thomas Rasch
13 years ago
Commit
a11c19a1893d6ffaa7e93248aa9622a818e49478
1 parent
c74b1426
o Backported from route-me: Changed the tile URL for OpenCycleMap
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
MapView/Map/RMOpenCycleMapSource.m
MapView/Map/RMOpenCycleMapSource.m
View file @
a11c19a
...
...
@@ -47,7 +47,7 @@
@"%@ tried to retrieve tile with zoomLevel %d, outside source's defined range %f to %f"
,
self
,
tile
.
zoom
,
self
.
minZoom
,
self
.
maxZoom
);
return
[
NSURL
URLWithString
:[
NSString
stringWithFormat
:
@"http://
andy.sandbox.cloudmade.com/tiles
/cycle/%d/%d/%d.png"
,
tile
.
zoom
,
tile
.
x
,
tile
.
y
]];
return
[
NSURL
URLWithString
:[
NSString
stringWithFormat
:
@"http://
tile.opencyclemap.org
/cycle/%d/%d/%d.png"
,
tile
.
zoom
,
tile
.
x
,
tile
.
y
]];
}
-
(
NSString
*
)
uniqueTilecacheKey
...
...
Please
register
or
login
to post a comment