Closed (duplicate)
Project:
cck_map
Version:
5.x-3.3
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Reporter:
Created:
19 May 2008 at 01:35 UTC
Updated:
19 May 2008 at 02:34 UTC
Marker description is overwritten by the marker title in node edit mode.
This is because line 403, in function gmapAdminController.prototype.initializePoints reads
400 marker = new GMarker(new GLatLng(lat, lon), markerOptions);
401 marker.image = image;
402 marker.title = title;
403 marker.description = title;
404 this.attachMarkerListeners(marker);
405 this.map.addOverlay(marker);
rather than
403 marker.description = description;
Not really worth rolling a patch for; just thought I'd point it out.
Pete.
Comments
Comment #1
pbarnett commented