| Class | Ym4r::GmPlugin::GeoRssOverlay |
| In: |
lib/gm_plugin/overlay.rb
|
| Parent: | Object |
Makes the link with the MGeoRSS extension by Mikel Maron (a bit modified though). It lets you overlay on top of Google Maps the items present in a RSS feed that has GeoRss data. This data can be either in W3C Geo vocabulary or in the GeoRss Simple format. See georss.org to know more about GeoRss.
| icon | [RW] | |
| options | [RW] | |
| proxy | [RW] | |
| url | [RW] |
You can pass the following options:
# File lib/gm_plugin/overlay.rb, line 264
264: def initialize(url, options = {})
265: @url = url
266: @icon = options.delete(:icon) || GIcon::DEFAULT
267: @proxy = options.delete(:proxy) || Variable::UNDEFINED
268: @options = options
269: end