Ticket #11200: 10838.diff
File 10838.diff, 534 bytes (added by , 15 years ago) |
---|
-
django/contrib/gis/maps/google/gmap.py
143 143 @property 144 144 def icons(self): 145 145 "Returns a sequence of GIcon objects in this map." 146 return [marker.icon for marker in self.markers if marker.icon]146 return set([marker.icon for marker in self.markers if marker.icon]) 147 147 148 148 class GoogleMapSet(GoogleMap): 149 149