Open GoogleCodeExporter opened 8 years ago
//Adding a Richmarker:
opt.position = new google.maps.LatLng(lat, lon);
opt.map = this.map;
opt.content = content;
var myMarker = new RichMarker(opt);
//With another near:
opt.position = new google.maps.LatLng(lat +0.1, lon +0.1);
opt.map = this.map;
opt.content = content;
var myMarker = new RichMarker(opt);
Expected result:
Like for the standard Marker: "By default, markers are displayed according to
their vertical position on screen, with lower markers appearing in front of
markers further up the screen."
Actual result:
However, no z-index is set on the div that contains the RichMarker.content
html, so the z-index is the insertion order.
Version: trunk
Browser / Operating System:
All
Original comment by madarco
on 8 Nov 2012 at 4:06
Original issue reported on code.google.com by
madarco
on 8 Nov 2012 at 4:05Attachments: