aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/referential_stop_areas/index.kml.slim
blob: 00d257f93f1607965c0c79af1e0d8188abfa183d (plain)
1
2
3
4
5
6
7
8
9
10
doctype XML

kml xmlns="http://www.opengis.net/kml/2.2" 
  document
    - @stop_areas.where("latitude is not null and longitude is not null").each do |stop_area|
      placemark id="#{stop_area.id}" 
        name = stop_area.name
        stop_area_type = stop_area.stop_area_type
        stop_area_type_label = t("area_types.label.#{stop_area.stop_area_type}")
        = stop_area.geometry.kml_representation.html_safe