单击检索 google 地图坐标

Retrieve google map coordinates on click

我需要从 google 地图中提取坐标,当我单击地图上的位置时,坐标会存储在一个变量中。

我怎样才能做到这一点?

这应该有效

google.maps.event.addListener(map, 'click', function(event) {
    // you can store event.latLng object in your variable
    // it returns an object like
    // rf {A: 51.510077954475555, F: -0.06484508514404297}
    console.log(event.latLng);
});