If you look at the location in MKMapView and in the Maps application, the map application has many more interesting points. Is there a way to get the same items to display in MKMapView?
Here is an example: http://drp.ly/1CJWbm
MapKit has no built-in functions. You will need to use Google web services to retrieve these POIs (e.g. Places APIs). You should take a look at the Google Places API Web Services
Try it [self.mapView setShowsPointsOfInterest:YES];(iOS 7 only)
[self.mapView setShowsPointsOfInterest:YES];
Source: https://habr.com/ru/post/1762112/More articles:как разделитьHelloна Привет с помощью javascript - javascriptВы команда разработчиков одного человека, кто-то спрашивает вас, какие ресурсы вам нужны. Что вы просите? - requirementsBest practices for working with software - coding-styleWhat applications are made with Ruby? - ruby | fooobar.comiphone - оживить вид новой ширины и высоты - iphoneHow to save separate settings for my Android apps? - androidИндекс раздела UITableView работает не так, как ожидалось - iphoneHow to reset primary key index to 1 using Visual Studio 2008 Server Explorer? - sqlHow to label and license source code? - c #An IDE for PHP with a visual designer? - phpAll Articles
Hello