Is it possible to determine the coordinates of the pixels of this marker, taking into account the current zoom level and the visible area of the map?
Current (v3):
map.getProjection().fromLatLngToPoint(marker.position);
https://developers.google.com/maps/documentation/javascript/3.exp/reference#Projection
Old (v2):
The fromLatLngToContainerPixel method should give you what you need if it markerPointis your marker and zoomLevelyour current increase:
markerPoint
zoomLevel
map.fromLatLngToContainerPixel(markerPoint.getLatLng(), zoomLevel);
Source: https://habr.com/ru/post/1719865/More articles:saving and restoring the state of the tab bar controller - objective-cWhat is the best way to build / design a long complex web form for collecting user input - designПроблема с синхронизированными наборами Java при выполнении equals() в обратном порядке из нескольких потоков - javaWhy does adding string + fixnum generate a coercion error? - ruby | fooobar.comWhat string concatenation method to use for N number of iterations? - c #how to get tab index by tab name in jquery? - jqueryCreate a key for software developed with vb.net - vb.net2 GB File Download in C # - cross-browserЗапуск командной строки firefox addons - command-linejquery submit * after * third-party ajax validation - jqueryAll Articles