README.md in ProMotion-map-0.4.0 vs README.md in ProMotion-map-0.4.1
- old
+ new
@@ -216,12 +216,35 @@
`radius` is the zoom level of the map in miles (default: 10).
---
+### CocoaTouch Property Convenience Methods
+
+`MKMapView` contains multiple property setters and getters that can be accessed in a more ruby-like syntax:
+
+```ruby
+type # Returns a MKMapType
+type = (MKMapType)new_type
+
+zoom_enabled?
+zoom_enabled = (bool)enabled
+
+scroll_enabled?
+scroll_enabled = (bool)enabled
+
+pitch_enabled?
+pitch_enabled = (bool)enabled
+
+rotate_enabled?
+rotate_enabled = (bool)enabled
+```
+
+---
+
### Accessors
-#### mapview
+#### `map` or `mapview`
Reference to the created UIMapView.
## Contributing