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
Plain Diff
Browse Files
Authored by
Justin R. Miller
2013-02-04 12:50:50 -0800
Commit
4c431503fc6cef7d3c18a730d639963fdfe97ced
2 parents
9fb88f80
f8f0955c
Merge branch 'develop' of github.com:mapbox/mapbox-ios-sdk into develop
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
MapView/Map/RMPointAnnotation.m
MapView/Map/RMPolygonAnnotation.m
MapView/Map/RMPolylineAnnotation.m
MapView/Map/RMPointAnnotation.m
View file @
4c43150
...
...
@@ -34,7 +34,9 @@
-
(
void
)
setLayer
:(
RMMapLayer
*
)
newLayer
{
if
(
newLayer
)
if
(
!
newLayer
)
[
super
setLayer
:
nil
];
else
RMLog
(
@"Setting a custom layer on an %@ is a no-op"
,
[
self
class
]);
}
...
...
MapView/Map/RMPolygonAnnotation.m
View file @
4c43150
...
...
@@ -57,7 +57,9 @@
-
(
void
)
setLayer
:
(
RMMapLayer
*
)
newLayer
{
if
(
newLayer
)
if
(
!
newLayer
)
[
super
setLayer
:
nil
];
else
RMLog
(
@"Setting a custom layer on an %@ is a no-op"
,
[
self
class
]);
}
...
...
MapView/Map/RMPolylineAnnotation.m
View file @
4c43150
...
...
@@ -34,7 +34,9 @@
-
(
void
)
setLayer
:(
RMMapLayer
*
)
newLayer
{
if
(
newLayer
)
if
(
!
newLayer
)
[
super
setLayer
:
nil
];
else
RMLog
(
@"Setting a custom layer on an %@ is a no-op"
,
[
self
class
]);
}
...
...
Please
register
or
login
to post a comment