Skip to content

Instantly share code, notes, and snippets.

@eito
Created June 3, 2014 19:43
Show Gist options
  • Save eito/26499579293bcd22a61d to your computer and use it in GitHub Desktop.
Save eito/26499579293bcd22a61d to your computer and use it in GitHub Desktop.
first swift ArcGIS mapping app... boom!
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let map = AGSMapView(frame:self.view.bounds)
let osm = AGSOpenStreetMapLayer()
map.addMapLayer(osm)
self.view.addSubview(map);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment