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
Justin R. Miller
2014-07-30 10:44:44 -0700
Commit
e63cb54cf8f438de9ef8342aa9a0e1e05c65fa85
1 parent
bb0cf958
fixes #475: avoid verbose logging for empty tile queries
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
MapView/Map/RMMBTilesSource.m
MapView/Map/RMMBTilesSource.m
View file @
e63cb54
...
...
@@ -122,7 +122,7 @@
[
results
next
]
;
NSData
*
data
=
[
results
dataForColumn
:
@"tile_data"
]
;
NSData
*
data
=
([[
results
columnNameToIndexMap
]
count
]
?
[
results
dataForColumn
:
@"tile_data"
]
:
nil
)
;
if
(
!
data
)
image
=
[
RMTileImage
errorTile
]
;
...
...
Please
register
or
login
to post a comment