Antonio Ciolino
Antonio Ciolino

Reputation: 556

Is there a way to make a "custom" Map through MonoTouch?

I am interested in making a small "Map-like" application that uses a custom map. I would need to figure out how to:

1) Create a map that has multiple levels of details, so zooming in would create greated detail

2) Make a connection to the Mapping control to allow zoom depth.

Number 2 seems possible without the MKMapView. I could just use a generic UIView and control pinch/zoomm events to change the "zoom level" and draw appropriately in the view, however that seems too tricky to pull off, espcially since I don't know how to do #1.

Thoughts?

Upvotes: 0

Views: 169

Answers (1)

poupou
poupou

Reputation: 43553

For #2 you can have a look at MonoTouch ZoommingPdfViewer sample (a port of Apple's ObjectiveC sample). It will show you how to use CALayer with UIView to create the pinch/zoom effect. Have fun!

Upvotes: 1

Related Questions