You are here

function openlayers_layer_type_kml::render in Openlayers 7.2

Same name and namespace in other branches
  1. 6.2 includes/layer_types/kml.inc \openlayers_layer_type_kml::render()

Render.

Overrides openlayers_layer_type::render

File

plugins/layer_types/openlayers_layer_type_kml.inc, line 184
KML Layer Type

Class

openlayers_layer_type_kml
OpenLayers KML Layer Type class

Code

function render(&$map) {
  $this->data['url'] = !empty($this->data['url']) ? file_create_url($this->data['url']) : '';
  drupal_add_js(drupal_get_path('module', 'openlayers') . '/plugins/layer_types/openlayers_layer_type_kml.js');
}