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
d91de5c4480162a9af1067fd33a31bfd35516b3e
1 parent
d68b0576
o Fixed some Clang issues
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
MapView/Map/RMMBTilesTileSource.m
MapView/Map/RMMapTiledLayerView.m
MapView/Map/RMMBTilesTileSource.m
View file @
d91de5c
...
...
@@ -44,7 +44,7 @@
-
(
id
)
initWithTileSetURL
:(
NSURL
*
)
tileSetURL
{
if
(
!
[
super
init
]
)
if
(
!
(
self
=
[
super
init
])
)
return
nil
;
tileProjection
=
[[
RMFractalTileProjection
alloc
]
initFromProjection
:[
self
projection
]
...
...
MapView/Map/RMMapTiledLayerView.m
View file @
d91de5c
...
...
@@ -214,6 +214,8 @@
tileImage
=
UIGraphicsGetImageFromCurrentImageContext
();
CFRelease
(
color
);
UIGraphicsEndImageContext
();
}
...
...
Please
register
or
login
to post a comment