Skip to content
openlayers__source__geojson.inc 500 B
Newer Older
Pol Dellaiera's avatar
Pol Dellaiera committed
<?php

function openlayers_openlayers__source__geojson_openlayers_source() {
Pol Dellaiera's avatar
Pol Dellaiera committed
  return array(
    'handler' => array(
      'class' => 'openlayers__source__geojson',
      'file' => 'openlayers__source__geojson.inc',
Pol Dellaiera's avatar
Pol Dellaiera committed
    )
  );
}

class openlayers__source__geojson extends openlayers_source {
Pol Dellaiera's avatar
Pol Dellaiera committed

  function options_form(&$form, &$form_state) {
    $form['options']['url'] = array(
      '#title' => t('URL'),
      '#type' => 'textfield',
      '#default_value' => $this->getOption('url'),
Pol Dellaiera's avatar
Pol Dellaiera committed
    );
  }
Pol Dellaiera's avatar
Pol Dellaiera committed
}