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
2013-02-11 15:39:32 -0800
Commit
b18bfaefd961cd2fc9b4488c6f3f0dfeb1c0ea09
1 parent
da127c4c
fixes #156: readjust loading tile background after map frame changes
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
MapView/Map/RMLoadingTileView.m
MapView/Map/RMMapView.m
MapView/Map/RMLoadingTileView.m
View file @
b18bfae
...
...
@@ -26,8 +26,8 @@
_contentView
=
[[
UIView
alloc
]
initWithFrame
:
CGRectMake
(
0
,
0
,
frame
.
size
.
width
*
3
,
frame
.
size
.
height
*
3
)];
[
self
addSubview
:
_contentView
];
[
self
setMapZooming
:
YES
];
[
self
setMapZooming
:
NO
];
self
.
userInteractionEnabled
=
NO
;
self
.
showsHorizontalScrollIndicator
=
NO
;
self
.
showsVerticalScrollIndicator
=
NO
;
...
...
MapView/Map/RMMapView.m
View file @
b18bfae
...
...
@@ -392,6 +392,9 @@
[
self
correctPositionOfAllAnnotations
];
self
.
minZoom
=
0
;
// force new minZoom calculation
if
(
_loadingTileView
)
_loadingTileView
.
mapZooming
=
NO
;
}
}
...
...
Please
register
or
login
to post a comment