gpt4 book ai didi

javascript - 两个Web组件之间的绑定(bind): Google map + geo-localisation

转载 作者:行者123 更新时间:2023-12-02 16:40:54 25 4
gpt4 key购买 nike

我正在尝试将 web 组件 google-map 与组件地理位置结合使用,如第三个示例: http://ebidel.github.io/geo-location/components/geo-location/

HTML:

<geo-location latitude="{{lat}}" longitude="{{lng}}"></geo-location>
<google-map latitude="{{lat}}" longitude="{{lng}}" showcentermarker></google-map>

但我的问题是,Google map 组件的 {{lat}} 和 {{lng}} 值永远不会在运行时更新。

运行时间:

<google-map fit="" showcentermarker="" latitude="{{lat}}" longitude="{{lng}}"></google-map>
<geo-location latitude="13" longitude="-73.57572912" watchpos=""></geo-location>

最佳答案

我怀疑您正在使用这样的元素:

<body>
<geo-location ...></geo-location>
<google-map ...></google-map>
</body>

但是声明性数据绑定(bind)仅在 Polymer 元素内部起作用,或者如果您用 template is="auto-binding" 包围它们:

<body>
<template is="auto-binding">
<geo-location ...></geo-location>
<google-map ...></google-map>
</template>
</body>

请参阅"Using the auto-binding template element"有关详细信息,请参阅文档中的章节。

关于javascript - 两个Web组件之间的绑定(bind): Google map + geo-localisation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27518166/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com