﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
7619	GIS/GoogleMaps: Support for point geometries in map creation	LudwigBrinckmann	jbronn	"The automatic creation of Google maps in the GIS branch supports the display of Polygons and Polylines, but not Points.


The attached patch adds the display of Points as GMarkers by adding another class GMarker to the overlays defined in overlays.py. The GMarker is very similar to polygons and polylines, but has the option to attach a title to it, whch will appear in Google Maps as a tooltip when moving over the marker. In addition the GoogleMap class takes another keyword parameter points to pass the point data through to the template.

Another option to implement the marker functionality would be to use a marker manager, as defined in the Google Maps API, which has the ability to deal with large amount of markers. The proposed patch, however, works fine with a small amount of markers.


The patch furthermore extends the model by having a GEvent class that allows to attach an event, such as 'click' to a line, polygon or point. A bit of example code for this is given in overlays.py:


{{{
     from django.shortcuts import render_to_response
      from django.contrib.gis.maps.google.gmap import GoogleMap
      from django.contrib.gis.maps.google.overlays import GMarker, GEvent
      from django.contrib.gis.geos import fromstr

      def sample_request(request):
          points = []
          location = fromstr('POINT(101 26)')
          point = GMarker(location)
          event = GEvent('click', 
            'function() { location.href = ""http://www.google.com""}')
          point.add_event(event)
          points.append(point)
          return render_to_response('mytemplate.html', 
          {'google' : GoogleMap(points=points)})
}}}

There is a working version of (a slightly older version of this patch) in the small map on the right hand panel at [http://www.yunnanexplorer.com/festivals].
"		closed	GIS	gis		fixed	Google Maps Markers		Unreviewed	1	0	0	0	0	0
