Outdooractive / route-me

Open source map library for iOS
Other
122 stars 400 forks source link

WMS Tile Source #133

Closed halset closed 11 years ago

halset commented 11 years ago

Long time ago, I added a RMWMSSource to /route-me/route-me. This is the same thing but with some minor changes from my project + some changes to confirm with the Alpstein fork.

Example (from RMWMSSource.h): RMWMS wms = [[RMWMS alloc] init]; wms.urlPrefix = @"http://vmap0.tiles.osgeo.org/wms/vmap0"; wms.layers = @"basic"; RMWMSSource wmsSource = [[RMWMSSource alloc] init]; wmsSource.wms = wms; wmsSource.uniqueTilecacheKey = @"abc"; [mapView setTileSource:wmsSource]; [wms release]; [wmsSource release];

trasch commented 11 years ago

Thanks for the patch, it's in the develop branch now!

halset commented 11 years ago

Thanks for the quick response!