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
2012-03-21 18:02:57 +0100
Commit
a1cedf6c6115e9460f6e96ba647952a4515b9073
1 parent
8433190f
o Bugfix: Unclustered annotations may have vanished during clustering
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
MapView/Map/RMMapTiledLayerView.m
MapView/Map/RMQuadTree.m
MapView/Map/RMMapTiledLayerView.m
View file @
a1cedf6
...
...
@@ -85,7 +85,7 @@
[
super
setNeedsDisplay
];
}
-
(
void
)
drawRect
:
(
CGRect
)
rect
-
(
void
)
drawRect
:
(
CGRect
)
rect
{
CGRect
bounds
=
self
.
bounds
;
...
...
MapView/Map/RMQuadTree.m
View file @
a1cedf6
...
...
@@ -446,7 +446,11 @@
if
(
enclosedAnnotationsCount
<
2
)
{
[
someArray
addObjectsFromArray
:
enclosedAnnotations
];
@synchronized
(
annotations
)
{
[
someArray
addObjectsFromArray
:
annotations
];
}
return
;
}
...
...
Please
register
or
login
to post a comment