7

Like the title says, I need to make a very customized view that behaves like MKMapView however uses a custom image. Perhaps it'll be easier to share what the end goal is.

The app I'm trying to make is a supplement to an MMO I play from time to time, it's also my semester project for an iOS class I'm taking. Anyway, the idea is to create an app that displays an interactive map from the game on the screen. The next step is to add some kind of overlay to the app for annotations so as to allow the user to add custom locations directly to the map.

Planet:Calypso_Continent:Eudoria (this is one of the images I would add)

So, here's the summary...

  • how to add an image and allow it to be scrollable and pinch-able like MKMapView
  • how to go about setting up an overlay with coordinates that allow for custom locations

Any and all tips would be appreciated. :)

Updates:

@andrewap showed me http://mapbox.com/mobile/ which looks fantastic and it seems like it would be just what I need but I don't think it's quite within my skill level as a beginner. So this question is still open if any other easier/simpler methods are found, assuming there are any.

I tried to familiarize myself with TileMill a bit and as far as I can tell does not support custom map images (as in fictional map images like the one pictured earlier) therefor does not entirely answer my question. However it's great if you're looking to have a fully functioning custom real-world map image.

(Note: I am very new to programming and even newer to objective-C/iOS programming, please keep that in mind while answering)

4

2 に答える 2

2

カスタムマップ画像とデータを使用したマップ機能が必要であるという事実を踏まえて、独自のタイルを持参できるサードパーティのSDKを検討することをお勧めします。開始するには、MapBoxとTileMillをご覧ください。

  • MapBox iOS SDKMKMapViewカスタムマップタイルを表示する代わりに
  • TileMill —ゲームマップ画像からカスタムマップタイルを作成します

私は個人的にこれまでこれを行ったことがないので、残念ながらこれ以上の具体的な指示を与えることはできません。カスタム画像をマップとして使用する例を次に示します。http://macwright.org/2012/08/13/images-as-maps.html

于 2012-11-15T19:25:34.287 に答える
1

WWDC2010サンプルコードで行っていることについての非常に優れたチュートリアルがあります。彼らは画像を取り、それを四分の一にカットし、それを四分の一にカットし、画像タイルが管理しやすくなるまで続け、UIScrollViewを使用してそれらを見せびらかします。ただし、ピンの実装はありません。実際のMKMapviewを使用し、TileMaps(これもWWDC2010から)の例を使用して、画像をマップタイルとして配置できます。画像に座標のタグを付ける必要があります。おそらく、画像をGeoTiffに変換してから、MapTilerで実行します。画像を実際の座標にどのようにマッピングするかはわかりませんが、ユーザーがルートをプロットできるようにする予定がない場合は、ピン(MKAnnotations)の座標を調整して、ピンが適切な場所に表示されるようにすることができます。地図。

于 2012-11-15T19:25:31.593 に答える