Project

General

Profile

1
import {Component} from '@angular/core';
2

    
3
@Component({
4
    selector: 'deposit-publications',
5
    template: `
6
        <deposit [compatibility]="'OpenDOAR'" [requestFor]="'Publications'"></deposit>
7
        <h3>Or locate data provider in map</h3>
8
        <div class="uk-margin-top">
9
          <i-frame [url]="mapUrl"width="100%" height="900"></i-frame>
10
        </div>
11
    `
12
})
13

    
14
export class DepositPublicationsComponent {
15
  public mapUrl ="https://beta.openaire.eu/stats/markers-demo.html";
16
}
(2-2/6)