We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26bad9f commit 2c11486Copy full SHA for 2c11486
samples/advanced-markers-draggable/index.ts
@@ -29,7 +29,7 @@
29
draggableMarker.addListener('dragend', (event) => {
30
const position = draggableMarker.position as google.maps.LatLng;
31
infoWindow.close();
32
- infoWindow.setContent(`Pin dropped at: ${position.lat()}, ${position.lng()}`);
+ infoWindow.setContent(`Pin dropped at: ${position.lat}, ${position.lng}`);
33
infoWindow.open(draggableMarker.map, draggableMarker);
34
});
35
0 commit comments