1. /**
  2. * @module meteoJS/synview/map/ll
  3. */
  4. import SynviewMap from '../SynviewMap.js';
  5. /**
  6. * Object to "communicate" with Leaflet.
  7. *
  8. * @extends module:meteoJS/synview/map.SynviewMap
  9. */
  10. export class MapLL extends SynviewMap {
  11. constructor(options) {
  12. super (options);
  13. // Normalize options
  14. if (this.options.layerGroup === undefined)
  15. this.options.layerGroup = L.layerGroup().addTo(this.options.map);
  16. }
  17. /**
  18. * Returns a new layer group, already added to the map.
  19. *
  20. * @inheritdoc
  21. * @return {L.layerGroup} New layer group.
  22. */
  23. makeLayerGroup() {
  24. return L.layerGroup().addTo(this.options.layerGroup);
  25. }
  26. }
  27. export default MapLL;