Simulate a click in a Google Map(在 Google 地图中模拟点击)
问题描述
我正在尝试使用 API v3 模拟用户在他们写下他们的地址时对他们的位置进行地理定位后点击 Google 地图.
I'm trying to simulate a user click on a Google Map, using API v3, after I geolocate their position when they write down their address.
我曾经这样做过:
google.maps.event.trigger(map, 'click', {
latLng: new google.maps.LatLng(lat, lng)
});
但现在我得到一个错误:
But now I got an error:
Uncaught TypeError: Cannot read property 'wa' of undefined main.js:727
Uncaught TypeError: Cannot read property 'wa' of undefined main.js:727
我需要模拟点击,因为我正在使用带有 CCK 字段的 Drupal,如果我将位置选择添加为标记,它会在引擎盖下的点击上执行此操作.
I need to simulate the click because I'm using Drupal with a CCK field, and it's doing this on clicks under the hood that are not triggered if I add the location pick as a marker.
推荐答案
地图对象的点击"事件需要一个 google.maps.MouseEvent 对象作为参数:
The map object's 'click' event takes a google.maps.MouseEvent object as parameter:
var mev = {
stop: null,
latLng: new google.maps.LatLng(40.0,-90.0)
}
google.maps.event.trigger(map, 'click', mev);
现场示例
这篇关于在 Google 地图中模拟点击的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Google 地图中模拟点击
基础教程推荐
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01