When i create Marker in my bean i set each marker an ID.The reason is i want to access them in the client side(javaScript) by referring that ID. So far i couldn't do that because i cant get the id of the marker.How can i do this.This is my code.
//in my bean
LatLng coord = new LatLng(36.885233, 30.702323);
Marker m1 = new Marker(coord, "User A");
m1.setId("a");
getSimpleModel().addOverlay(m1);
//in my xhtml
var markers = map.getMap().markers;
for (var i = 0; i < markers.length; i++) {
var marker = markers[i];
//i want to get the id of the marker here
}