| 123456789101112131415161718192021222324252627282930 |
- (function ($, Drupal) {
- "use strict";
- Drupal.behaviors.openlayers = {
- attach: function (context, settings) {
- Drupal.openlayers.pluginManager.attach(context, settings);
- $('.openlayers-map:not(.asynchronous)', context).once('openlayers-map', function () {
- var map_id = $(this).attr('id');
- if (Drupal.settings.openlayers.maps[map_id] !== undefined) {
- Drupal.openlayers.processMap(map_id, context);
- }
- });
- // Create dynamic callback functions for asynchronous maps.
- $('.openlayers-map.asynchronous', context).once('openlayers-map.asynchronous', function () {
- var map_id = $(this).attr('id');
- if (Drupal.settings.openlayers.maps[map_id] !== undefined) {
- Drupal.openlayers.asyncIsReadyCallbacks[map_id.replace(/[^0-9a-z]/gi, '_')] = function () {
- Drupal.openlayers.asyncIsReady(map_id);
- };
- }
- });
- },
- detach: function (context, settings) {
- Drupal.openlayers.pluginManager.detach(context, settings);
- }
- };
- }(jQuery, Drupal));
|