There is a code output Google card:
<?$APPLICATION->IncludeComponent( "bitrix:map.google.view", "map", array( "INIT_MAP_TYPE" => "ROADMAP", "MAP_DATA" => serialize(array("google_lat" => $mapLAT, "google_lon" => $mapLON, "google_scale" => 15, "PLACEMARKS" => $arPlacemarks)), "MAP_WIDTH" => "100%", "MAP_HEIGHT" => "400", "CONTROLS" => array( ), "OPTIONS" => array( 0 => "ENABLE_DBLCLICK_ZOOM", 1 => "ENABLE_DRAGGING", ), "MAP_ID" => "", "ZOOM_BLOCK" => array( "POSITION" => "right center", ), "COMPONENT_TEMPLATE" => "map" ), false );?> There are many marked points on the map, some of them are grouped by cities (one point on the map and a number indicating the number of marks). How to simulate a click on a grouped label on the page where the bitrix:map.google.view component is bitrix:map.google.view ? Those. Below is a list of cities, it is necessary that when you click on a city (if there are many marks in it), the map increases and all the marks of this city are displayed. How to implement this?