Как подружить Angular 2 и Leaflet через директиву?

Не могу вместе соединить ангуляр второй и leaflet;
position.component.ts
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-device',
  template: '<div id = "mapid" leaflet style="width: 600px; height: 400px;"></div>'
})


export class PositionComponent implements OnInit {

  constructor() { }

  ngOnInit() {
  }

}

position.module.ts
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { positionRouting } from './position.routing';
import {SmartadminModule} from "../shared/smartadmin.module";
import {PositionComponent} from "./position.component";
import {SmartadminValidationModule } from "../shared/forms/validation/smartadmin-validation.module";
import {LeafletDirective} from "../shared/leaflet/leaflet.directive";

@NgModule({
  imports: [
    CommonModule,
    SmartadminValidationModule,
    positionRouting,
      SmartadminModule
  ],
  declarations: [PositionComponent,LeafletDirective]
})
export class PositionModule { }

leaflet.directive.ts
import { Directive, ElementRef, Input, OnInit } from '@angular/core';
declare var $: any;

@Directive({ selector: '[leaflet]' })

export class LeafletDirective implements OnInit{

    mymap:any;

    constructor(el: ElementRef) {
        //el.nativeElement.style.backgroundColor = 'yellow';
    }

    ngOnInit(){
        System.import('script!leaflet/dist/leaflet.js').then(()=>{
            console.log($(this.el));
            this.mymap = L.map('mapid').setView([51.505, -0.09], 13);

            L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpandmbXliNDBjZWd2M2x6bDk3c2ZtOTkifQ._QA7i5Mpkd_m30IGElHziw', {
                maxZoom: 18,
                attribution: 'Map data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' +
                '<a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' +
                'Imagery © <a href="http://mapbox.com">Mapbox</a>',
                id: 'mapbox.streets'
            }).addTo(this.mymap );
        })
    }

}
  • Вопрос задан
  • 1768 просмотров
Пригласить эксперта
Ответы на вопрос 1
ozknemoy
@ozknemoy
яваскриптист
тут уже готовый рецептик https://github.com/haoliangyu/angular2-leaflet-starter
Ответ написан
Комментировать
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы