离子生成说:房产'的类型不存在“”

问题描述 投票:-1回答:1

当我尝试在ionic3建立这个代码就说明我这个警告:房产“tempIcon”不上输入“地图服务”存在。

离子生成

import { Injectable } from "@angular/core";
import { BaseLayersService } from "./base-layers.service";
import { WmsLayersService } from "./wms-layers.service";
import { ToastController } from 'ionic-angular';
import L from "leaflet";

@Injectable()
export class MapService {
public map: L.Map;
constructor(private wmsLayersService: WmsLayersService, private baseLayersService: BaseLayersService, public toastCtrl: ToastController) {
}
loadMap() {

  this.tempIcon = L.icon({
        iconUrl: 'assets/imgs/position.png',
        shadowUrl: '',
        iconSize: [48, 48], // size of the icon
        shadowSize: [0, 0], // size of the shadow
        iconAnchor: [48, 48], // point of the icon which will correspond to markers location
        shadowAnchor: [0, 0], // the same for the shadow
        popupAnchor: [48, 48] // point from which the popup should open relative to the iconAnchor
    });

const map = L.map("map", {
  //layers: [this.baseLayersService.baseLayers.OpenStreetMap, this.wmsLayersService.wmsLayers.Falabella]
   layers: [this.wmsLayersService.wmsLayers.Falabella, this.baseLayersService.baseLayers.CartoDB ] 
});

L.control.layers(this.baseLayersService.baseLayers, this.wmsLayersService.wmsLayers).addTo(map);
L.control.scale().addTo(map);
typescript ionic3 leaflet
1个回答
2
投票

我想你奥斯卡最佳吨声明。只是试图声明它像

public map: L.Map;
public tempIcon: any;
© www.soinside.com 2019 - 2024. All rights reserved.