Overview

Namespaces

  • Mapbender
    • Component
      • HTTP
    • CoreBundle
      • Command
      • Component
        • Exception
      • Controller
      • DataFixtures
        • ORM
      • DependencyInjection
      • Element
        • Type
      • Entity
      • EventListener
      • Extension
      • Form
        • DataTransformer
        • EventListener
        • Type
      • Security
      • Template
    • DrupalIntegrationBundle
      • DependencyInjection
      • Security
        • Authentication
          • Provider
          • Token
        • Authorization
          • Voter
        • Factory
        • Firewall
        • User
      • Session
    • KmlBundle
      • Element
    • ManagerBundle
      • Controller
      • Form
        • DataTransformer
        • Type
    • MonitoringBundle
      • Command
      • Component
      • Controller
      • DependencyInjection
      • Entity
      • EventListener
      • Form
    • PrintBundle
      • Component
      • Controller
    • WmcBundle
      • Component
        • Exception
      • Element
        • Type
      • Entity
      • Form
        • EventListener
        • Type
    • WmsBundle
      • Component
        • Exception
      • Controller
      • DependencyInjection
      • Element
        • Type
      • Entity
      • Event
      • Form
        • EventListener
        • Type
    • WmtsBundle
      • Component
        • Exception
      • Controller
      • Entity
      • Form
        • Type
  • None
  • PHP

Classes

  • MapbenderWmtsBundle
  • WmtsLayerFactory
  • WmtsLayerLoader
  • Overview
  • Namespace
  • Class
  • Tree
  • Deprecated
  • Todo
  • Download
 1: <?php
 2: 
 3: namespace Mapbender\WmtsBundle;
 4: 
 5: use Mapbender\CoreBundle\Component\Layer;
 6: use Mapbender\WmtsBundle\WmtsLayerLoader;
 7: 
 8: class WmtsLayerFactory extends Layer {
 9:     public function getLayerClass() {
10:         return "wmts";
11:     }
12: 
13:     public function getType(){
14:         return "wmts";
15:     }
16: 
17:     public function create($name, array $configuration) {
18:         return new WmtsLayeLoader($name, $configuration);
19:     }
20: }
21: 
22: 
Mapbender3 API documenation API documentation generated by ApiGen 2.8.0