谷歌地图与ngmap移动问题

Google maps with ngmap mobile issue

本文关键字:问题 移动 ngmap 谷歌地图      更新时间:2023-09-26

我正在使用带有ngmap的谷歌地图而且我在custom marker上遇到了问题.

我的custom marker内部有一个input字段,用于为我的位置设置自定义名称。问题是在移动设备(Android和iOS)上,我无法访问此字段进行写入。(基本上我无法点击输入字段)你知道为什么会这样吗?

我这里有我的代码来查看这个东西的实际效果。

你可以试试这个:

.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();
  }