angular/components

Document approaches for lazy-loading the Google Maps API

Open

#17,828 创建于 2019年11月27日

在 GitHub 查看
 (27 评论) (5 反应) (1 负责人)TypeScript (6,650 fork)batch import
P3area: google-mapsdocsfeaturehelp wanted

仓库指标

Star
 (24,044 star)
PR 合并指标
 (平均合并 2天 16小时) (30 天内合并 80 个 PR)

描述

Feature Description

So great to see google maps being added as apart of this library. I have had an internal version for my own projects for some time(back since angular.js and now upgraded/rewrite for angular 2+) now which wrapped the google maps lib to provide an angular integration.

One of the major issues we had was you do not want to wait for or load the google maps api on every page when it isn't needed. For our use case we were only using it on a details page for 2 records + on some reports if they happened to have a map. It required some heavy changes to make all google map related calls actually start from a promise/observable which loads the sdk first if it isn't already present.

I get that there is the async and other script tags to defer loading but still once you need this feature it is basically a must have and it also requires some hard API changes so I'd really hope it's could be applied sooner rather than later.

I currently have directives/components for the following:

  • routes
  • markers
  • heat maps
  • the map itself

@mbehrlich From release notes I think you are the primary person working on maps. Would be great to get your thoughts on this.

Use Case

Most apps aren't loading maps on every page and the maps sdk is quite large if you aren't using it.

贡献者指南