运行ng build --prod时传单标记图标的URL编译错误

时间:2018-11-18 22:22:17

标签: angular webpack leaflet ngx-leaflet

由于某种原因,运行ng build --prod时,Leaflet标记图标url编译错误,而运行ng build时,Leaflet标记图标url没问题。

我的环境:

Angular CLI: 7.0.5
Node: 11.2.0
OS: linux x64
Angular: 7.0.3
... animations, common, compiler, compiler-cli, core, forms
... http, language-service, platform-browser
... platform-browser-dynamic, router

Package                           Version
-----------------------------------------------------------
@angular-devkit/architect         0.10.5
@angular-devkit/build-angular     0.10.5
@angular-devkit/build-optimizer   0.10.5
@angular-devkit/build-webpack     0.10.5
@angular-devkit/core              7.0.5
@angular-devkit/schematics        7.0.5
@angular/cli                      7.0.5
@ngtools/webpack                  7.0.5
@schematics/angular               7.0.5
@schematics/update                0.10.5
rxjs                              6.3.3
typescript                        3.1.6
webpack                           4.19.1

您可以在此url下找到产品环境

屏幕截图显示了错误的已编译图标标记url的示例。

leaflet marker icon url compiled wrong while ng build --prod

我想这与Leaflet上的issue有关,但我不知道该如何解决。

1 个答案:

答案 0 :(得分:3)

Leaflet在运行时会在DOM中重写其标记的src标记,当您使用Angular和AOT编译(在生产模式下打开)时,该标记会中断。

您看起来好像正在使用ngx-leaflet。如果是这样,请阅读this section of the README,以获取有关如何使Leaflet标记在Angular中工作的一些信息。

TL; DR是您需要使标记使用自定义图标,这些图标引用由构建管道(例如Webpack或Angular CLI)处理的图像。

首先,告诉Angular CLI将Leaflet图标复制到./dist目录中。在angular.json中:

{
  ...
  "assets": [
    "assets",
    "favicon.ico",
    {
      "glob": "**/*",
      "input": "./node_modules/leaflet/dist/images",
      "output": "assets/"
    }
  ],
  ...
}

然后,在创建标记时在代码中引用这些图标:

let layer = marker([ 46.879966, -121.726909 ], {
   icon: icon({
      iconSize: [ 25, 41 ],
      iconAnchor: [ 13, 41 ],
      iconUrl: 'assets/marker-icon.png',
      shadowUrl: 'assets/marker-shadow.png'
   })
});

这将确保Angular CLI将node_modules/leaflet/dist/images目录中的所有内容复制到./dist/assets中,您可以在其中在客户标记中引用它们。