Why MKTileOverlay repeats same tile over and over for openstreet map in ios, swift4

691 views Asked by At

I'm using OpenStreet map to with our own map server with iOS. for iOS I couldn't find any third party library (free or paid) which can use with our open StreetMap server. then I decided to go with MKMapView using MKTileOverlay like below :

added a MapKit outlet to my storyboard. made a outlet connection and set delegates to self using storyboard and then here is my viewdidload method.

let urltemplate = "http://tile.openstreetmap.org/17/94621/62995.png"
let overlay = MKTileOverlay(urlTemplate: urltemplate)
overlay.canReplaceMapContent = true
mapView.add(overlay)

then the output is like below :

Out put of Map

Any idea of what is going on. when I scroll to right of left I can only see this image. please help me with this.

1

There are 1 answers

2
scai On

Because that's exactly what you specified in your URL template.

Instead of

http://tile.openstreetmap.org/17/94621/62995.png

use

http://tile.openstreetmap.org/{z}/{x}/{y}.png