作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
EDIT: I found the problem. I was using ng2-boostrap tabset module, when adding the maps inside this view, the map does not render. I haven't been able to fix the problem though.
import { AgmCoreModule } from 'angular2-google-maps/core';
和
AgmCoreModule.forRoot({ apiKey: 'xxx', libraries: ['places'] })
其中 xxx 是我从 google api 网站下载的 apiKey。如果我在新创建的 angular-cli 应用程序中运行此代码 - 将模块加载到 app.module 中,一切正常。选择器代码看起来:
<sebm-google-map [latitude]="lat" [longitude]="lng">
<sebm-google-map-marker [latitude]="latitude" [longitude]="longitude">
</sebm-google-map-marker>
</sebm-google-map>
最佳答案
您是否尝试过将此代码放入负责查看 map 的组件中?
import {MapsAPILoader, SebmGoogleMap} from 'angular2-google-maps/core';
@ViewChild(SebmGoogleMap) map: SebmGoogleMap;
this.map.triggerResize();
关于google-maps - 在子组件中使用 SebM 谷歌地图模块显示空白 map ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42067392/
EDIT: I found the problem. I was using ng2-boostrap tabset module, when adding the maps inside this
我的html代码是 在 sebm-google-map 中我可以找到 fitBounds 但不知道如何应用它。我有许多带有 map 标记的设备,因此当我加载该 map 组件时,它将在
每次我在编辑它时尝试获取新的多边形,无论是通过拖动还是点击,我总是会获取变量的初始路径。 我初始化我的路径变量: paths: Array = [{lat: -12.052224, lng: -77.
我正在尝试让 angular-google-maps/@agm/core 在我的 Angular 4 安装上正常工作。 我在组件 html 文件中有这个: 当我运行它时,我收到此错误消息:
我是一名优秀的程序员,十分优秀!