我正在使用 Google Maps SDK 在我的应用中显示 map 。一切正常,除了我的 map View 看起来是空的,因为没有显示所有的地方。当我从谷歌地图应用程序打开相同的位置时,会显示所有地方,如商店、办公室、医院等。我的 map View 有什么问题。
我正在使用 Google Developers 网站上编写的这段代码:
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:72.34 longitude:19.45 zoom:18];
gmapView = [GMSMapView mapWithFrame:mainView.bounds camera:camera];
gmapView.myLocationEnabled = YES;
以下是我的应用和谷歌地图应用的截图:
我的应用:
谷歌地图:
这些是同一个地方的截图!
Best Answer-推荐答案 strong>
iOS 版 Google Map 与 iOS 版 Google Places 是 2 个不同的 API。我认为您使用的是 Only Google Map API,所以,所有的地方都是空的。如果您想在 map 上放置地点,我认为您需要学习如何使用 Google Places API。
有关更多信息,您可以从以下几个有用的网站中学习:
- Google Places API in iOS application
- https://developers.google.com/places/documentation/
- http://www.raywenderlich.com/13160/using-the-google-places-api-with-mapkit
关于ios - Google Maps SDK 未显示所有地点,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/24505942/
|