Motion::YandexMapKit

This gem provides YandexMapKit support for RubyMotion. YandexMapKit is MapKit-like framework based on Yandex.com own maps and navigation data.

Installation

Update your Rakefile

require 'motion-yandexmapkit'

Install the map support files into your resources

$ rake yandexmapkit:install

Get the API key

You can obtain the API key by mailing [email protected] with subject "Yandex.Mobmaps" and a description of your plans on using the framework.

Sample Project

Please check the official demo for now.

Small demo

class MapController < UIViewController
  def loadView
    self.view = YMKMapView.alloc.init
    self.view.apiKey = '...'
  end
end