Google 地图与 ngmap 移动问题
Google maps with ngmap mobile issue
我在 angular 应用程序中使用带有 ngmap
的 google 地图
我遇到了 custom marker
.
的问题
我的 custom marker
有一个 input
字段用于为我的位置设置自定义名称。
问题是在移动设备上 (Android & iOS) 我无法访问此字段以写入。 (基本上我无法点击输入字段)
你知道为什么会这样吗?
我已经得到我的代码 here 来查看这个东西的运行情况。
你可以试试这个:
HTML:
<div class="infobox">
<div class="infobox__custom-name">
<input autofocus type="text" ng-model="vm.eventLocation.name" ng-click="vm.click($event)">
</div>
<div class="infobox__address">{{vm.eventLocation.address}}</div>
</div>
JS:
vm.click = function(e) {
e.target.focus();
}
我在 angular 应用程序中使用带有 ngmap
的 google 地图
我遇到了 custom marker
.
我的 custom marker
有一个 input
字段用于为我的位置设置自定义名称。
问题是在移动设备上 (Android & iOS) 我无法访问此字段以写入。 (基本上我无法点击输入字段)
你知道为什么会这样吗?
我已经得到我的代码 here 来查看这个东西的运行情况。
你可以试试这个:
HTML:
<div class="infobox">
<div class="infobox__custom-name">
<input autofocus type="text" ng-model="vm.eventLocation.name" ng-click="vm.click($event)">
</div>
<div class="infobox__address">{{vm.eventLocation.address}}</div>
</div>
JS:
vm.click = function(e) {
e.target.focus();
}