admin管理员组文章数量:1345895
Does anyone know why "getPosition()" doesn't work with the new Google map Advanced markers?
Below is a link to a test page where "getPosition()" works fine with a legacy marker, while the Advanced marker gets an "Uncaught TypeError: marker2.getPosition is not a function" error message.
Refer to the console.log for results.
Test page:
.html
Thanks,
Bennie
P.S. I tried all kinds of things, and looked everywhere, but haven't been able to figure it out, nor find an answer online.
P.P.S. Finally! After looking at the code for this Google maps tutorial "Make markers draggable" example,
[],
I changed "marker2.getPosition()" to "marker2.position.lat" and "marker2.position.lng" and the remote Advance marker button worked!
See example page: [ .html ].
I tried "marker.position.lat" and "marker.position.lng" for the legacy marker and got something other than the lat and lng, as you will be able to see in your console.log() gizmo.
Does anyone know why "getPosition()" doesn't work with the new Google map Advanced markers?
Below is a link to a test page where "getPosition()" works fine with a legacy marker, while the Advanced marker gets an "Uncaught TypeError: marker2.getPosition is not a function" error message.
Refer to the console.log for results.
Test page:
https://whowillbethenextonline./advanced-marker-get-position.html
Thanks,
Bennie
P.S. I tried all kinds of things, and looked everywhere, but haven't been able to figure it out, nor find an answer online.
P.P.S. Finally! After looking at the code for this Google maps tutorial "Make markers draggable" example,
[https://developers.google./maps/documentation/javascript/examples/advanced-markers-draggable],
I changed "marker2.getPosition()" to "marker2.position.lat" and "marker2.position.lng" and the remote Advance marker button worked!
See example page: [ https://whowillbethenextonline./advanced-marker-get-position-2.html ].
I tried "marker.position.lat" and "marker.position.lng" for the legacy marker and got something other than the lat and lng, as you will be able to see in your console.log() gizmo.
Share Improve this question edited Oct 15, 2023 at 0:02 Bennie asked Oct 14, 2023 at 20:51 BennieBennie 411 silver badge4 bronze badges3 Answers
Reset to default 7Old Markers (Legacy) support getPosition()
method to get their coordinates.
As Google introduced AdvancedMarkerElement now marker location coordinates can be retrieved using just .position
Example:
Old Marker elements
marker.getPosition()
New Advanced Marker marker.position
After updating to advanced markers I had a very similar issue, with the same error. In the end I had to add the lat and long into .position
Here is the original line which didn't work with advanced markers
map.panTo(clickedMarker.getPosition());
Here is my new line of code that worked
map.panTo(new google.maps.LatLng(clickedMarker.position.lat, clickedMarker.position.lng));
One approach you can use alternatively - even though it's a tad hacky - is creating the function. It's a quick 'n dirty shortcut for if you call marker.getPosition()
in many places in your code:
const point = new google.maps.LatLng(lat, lng);
marker = new google.maps.marker.AdvancedMarkerElement({
position: point,
map: map
});
marker.getPosition = () => point;
本文标签: javascriptUsing getPosition() with Google Advanced markersStack Overflow
版权声明:本文标题:javascript - Using getPosition() with Google Advanced markers - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743804836a2541985.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论