diff options
author | Minh Nguyễn <mxn@1ec5.org> | 2015-05-14 00:55:04 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2015-05-18 17:21:49 -0700 |
commit | 1102f85a8323cf4c06544cd8b741bb82c528e000 (patch) | |
tree | fd1af12e0f5aecf29baf3918f4d921b7253489f3 /platform | |
parent | b7b4515d4883f7da1fdcfb4d5aff7a2f3118ae86 (diff) | |
download | qtlocation-mapboxgl-1102f85a8323cf4c06544cd8b741bb82c528e000.tar.gz |
Less bland default title for user dot annotation
What’s a map without a You Are Here sticker?
Diffstat (limited to 'platform')
-rw-r--r-- | platform/ios/MGLUserLocation.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/MGLUserLocation.m b/platform/ios/MGLUserLocation.m index 91e8e30103..cdeae3a9ce 100644 --- a/platform/ios/MGLUserLocation.m +++ b/platform/ios/MGLUserLocation.m @@ -63,7 +63,7 @@ - (NSString *)title { - return (_title ? _title : @"Current Location"); + return (_title ? _title : @"You Are Here"); } @end |