Show the same points of interest in MKMapView as in Maps?

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

+3
source share
2 answers

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

+1
source

Try it [self.mapView setShowsPointsOfInterest:YES];(iOS 7 only)

+2

Source: https://habr.com/ru/post/1762112/


All Articles