如何在MKMapView中显示我自己的地图?
我有一张城镇的小地图,我想将其放入谷歌地图中,知道该怎么做吗? 我这样做是因为我需要谷歌地图来指出用户当前位置。
i have a small map of a town, i want to place it into the google map, any idea how to do it ?
i am doing so because i need google map to point out user current location.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 Apple 的 TileMap 示例代码
Checkout the TileMap example code from Apple
要在 MKMapView 中显示自定义地图,您的自定义地图需要采用 Keyhole 标记语言 (KML)。 KML 是一种文件格式,用于在地球浏览器(例如 Google 地球、Google 地图和移动版 Google 地图)中显示地理数据。该文件可以包含自定义图像和注释。
http://developer.apple.com/library/ios/#samplecode/KMLViewer/Introduction /Intro.html
To display a custom map in MKMapView your custom map needs to be in Keyhole Markup Language (KML). KML is a file format used to display geographic data in an Earth browser such as Google Earth, Google Maps, and Google Maps for mobile. The file can include custom images and annotations.
http://developer.apple.com/library/ios/#samplecode/KMLViewer/Introduction/Intro.html