Integration of Cesium JS 3D mapping software with Drupal 8

logicp d79adba2ac Fixing indent 8 лет назад
boutique_data 73808e260b Initial commit 8 лет назад
config_import_files e6fa83a243 Adding Config Import Files 8 лет назад
mapui 73808e260b Initial commit 8 лет назад
qd30map 73808e260b Initial commit 8 лет назад
zone_data 73808e260b Initial commit 8 лет назад
README.md d79adba2ac Fixing indent 8 лет назад

README.md

cesium-drupal

Integration of Cesium JS 3D mapping software with Drupal 8

Be sure to stick this in your theme:

:::PHP function myTheme_preprocess_page(&$variables) {

$langCode = \Drupal::languageManager()->getCurrentLanguage()->getId();
if (\Drupal::service('path.current')->getPath() === '/map') {
    if ($langCode === 'fr') {
        $variables['#attached']['library'][] = 'qd30map/cesiumAdditionsFr';
    } else {
        $variables['#attached']['library'][] = 'qd30map/cesiumAdditions';
    }
}

if (isset($variables['node'])) {
    if ($variables['node']->getType() == 'boutique') {
          $variables['#attached']['library'][] = 'qd30map/cesiumMini';
            $node = \Drupal::routeMatch()->getParameter('node');
            if ($node) {
              $variables['#attached']['drupalSettings']['boutique_title'] = $node->getTitle();
            }
    }
}

}